Sergey Shepelev

Results 290 comments of Sergey Shepelev

@EricSoroos yeah good idea, I'll do 0.17.5 without pyproject.toml

@rileyk90 @EricSoroos please try to install 0.17.5 from test pypi. `pip install --index-url https://test.pypi.org/simple/ 'httplib2==0.17.5'`

It's intended to be thread safe. Docs update coming. That commit makes connection pool thread safe, but in a dangerous way - effectively each thread gets a separate pool. That...

@justinfx it is exactly thread **safe** as in "works without corrupting data", not thread optimal. Two caveats: - for new host (more precisely new conn_key) multiple threads may open multiple...

Unless social comfort is compromised, technically `dict.get + if` is a better option. Use `None` as default value if you don't like sentinel object. Reasons: - `if` is closer representation...

Please show `C:\Users\anish.jain\Miniconda3\bin\pip freeze` specifically, lines containing substring `sock` I want to know where `lib\site-packages\socks.py` is coming from to create a regression test.

You are right, `re` in `RETRIES` suggests it only works after first failure. Even comment above that variable says > A request will be tried `RETRIES` times **if it fails**...

AFAIK, so far we're good. [RFC7235#4.2](https://tools.ietf.org/html/rfc7235#section-4.2) > The "Authorization" header field allows a user agent to authenticate itself with an origin server -- usually, but not necessarily, after receiving a...

I agree that there should be an option to send credentials immediately. But it should have an on/off trigger, per session and per request.