Peter Bengtsson

Results 314 comments of Peter Bengtsson

[It's referring to this line](https://github.com/jazzband/django-configurations/blob/3883cc4fe4d5874e2cec6521633d45779b11a4d1/configurations/importer.py#L1)

See the note in the first line of my project: https://github.com/peterbe/premailer/blob/master/CHANGES.rst :)

PS the immediate "solution" is to do it like this instead: ```diff -c = HTTPConnection('www.peterbe.com',) +c = HTTPConnection('www.peterbe.com', port=443) ``` then it works as expected. Clunky though. That's why I...

@Asmeble How does that help when trying to use `hyper`? Also, how is that different from regular `requests`?

Can we close this now? Seems it's already there: https://github.com/Lukasa/hyper/blob/18b629b8487169870235fe13387e2ae03c178b9f/setup.py#L80 and https://github.com/Lukasa/hyper/blob/18b629b8487169870235fe13387e2ae03c178b9f/hyper/http20/response.py#L35

Thanks for that tip @KostyaEsmukov It helped me here: https://github.com/Lukasa/hyper/issues/408#issuecomment-486232660

See this comment: https://github.com/Lukasa/hyper/pull/407#issuecomment-486234837 I was running pytest with `hyper` in Python 3.7 and was getting that SSL warning. But as soon as I installed `ndg-httpsclient` that (same) SSL error...

For the record, to make that warning go away you just... ``` ▶ pip install ndg-httpsclient Collecting ndg-httpsclient ... Requirement already satisfied: pycparser in /Users/peterbe/virtualenvs/hyper/lib/python3.7/site-packages (from cffi!=1.11.3,>=1.8->cryptography>=2.3->PyOpenSSL->ndg-httpsclient) (2.19) Installing collected...

Also, I didn't do any extensive manual usage/testing BEFORE adding `ngd-httpsclient` (and its peers) but I *was* able to use `hyper` for a simple GET before on a https:// site.

@schalkneethling What Tobin said. Can you make this issue blocked by whichever issue implements the new UI? I'd suggest we implement the new UI, behind a env var, and land...