Matt Robenolt

Results 178 comments of Matt Robenolt

+1 :+1: :shipit:

In what way does it fail? python2 didn’t just stop working in January.

My POV here as someone who has long used this project and highly advocated and a maintainer, I don’t use it anymore with python3. The problems this project addressed don’t...

So the error here is unrelated to virtualenv-burrito. We could _probably_ do something to work around this, but it'd be a pain since we rely solely on the stdlib. But...

This also seems to be dependent on the order, so something is persisting between requests. ``` python >>> s.get('https://216.58.218.142', headers={'Host': 'www.google.com'}) >>> s.get('https://216.58.218.142', headers={'Host': 'google.com'}) Traceback (most recent call last):...

> Do you have pyOpenSSL, ndg-httpsclient, and pyasn1 installed as well? Yes. ``` $ pip freeze | egrep 'pyOpenSSL|ndg-httpsclient|pyasn1' ndg-httpsclient==0.3.3 pyasn1==0.1.8 pyOpenSSL==0.15.1 ```

And for posterity, latest requests, `2.10.0`.

Would that need to be patched in urllib3 itself to expose the API? Or can it be done in requests?

Awesome, thanks. :+1: I'll take a look over on that side then!

I can look through it. The nice part about working through interfaces here is we wouldn't need to add any external dependencies. We can just define a `Base64Encoder` interface and...