Open cdent opened 7 months ago
This is a draft attempt to update to urllib3 version 2, but the results are potentially too fragile to be considered.
The fundamental problem is caused by changing constraints in the signatures of __init__ of the super classes. Which gets quite complicated.
__init__
urllib3 version introduces use of the * argument in the signature, constraining what must be a named parameter.
*
the key change
This is a draft attempt to update to urllib3 version 2, but the results are potentially too fragile to be considered.
The fundamental problem is caused by changing constraints in the signatures of
__init__
of the super classes. Which gets quite complicated.urllib3 version introduces use of the
*
argument in the signature, constraining what must be a named parameter.