Closed hugoArregui closed 3 years ago
Still supporting Py2, so will fix. Might happen faster with a PR, if you are interested.
@seizethedave thanks a lot! I sent a PR, let me know if you want me to bump the version in the PR as well
Excellent, I will take care of the version stuff and try to get out a release today. Thanks for doing the PR!
4.8.2 is out with this change. @hugoArregui
Thanks a lot @seizethedave
Hello,
I understand that urllib3 doesn't support python2 anymore, so maybe this is something you are not willing to fix, but I though about reporting it since we are still in the process of migrating to python3.
This is how mixpanel creates the connection pool:
but since we are importing for future:
both in python2 and python3
cert_reqs
is a unicode. But please also notice that for python2 (unlike python3) unicode is not an instance of str, so in urllib3:candidate will not be correctly resolved.