Mateus Dubiela Oliveira
Mateus Dubiela Oliveira
Doesn't seem to be the case. ```python def test_respect_proxy_env_on_send_session_prepared_request(self): session = requests.Session() # Does not respect the proxy configuration and ignores the proxy request = requests.Request( method='GET', url='https://www.google.com/' ) with...
The [line changed](https://github.com/psf/requests/blob/master/requests/sessions.py#L626-L636) on the PR has the erroneous precedence format you are mentioning, I'll fix that to be consistent. You mention there might be other code paths using an...
In my specific case the callback function is managed by another library, namely martian https://github.com/oliyh/martian There are options to resolve it, like not using exceptions as a control flow, however...
> Could you please expand on this? Where are exceptions being used as control flow? This is being used in my application, where when the status code is above 400...
Studying the code I wanted to double check some understandings that I have about [org.httpkit.client/request](https://github.com/http-kit/http-kit/blob/master/src/org/httpkit/client.clj#L198) and its relation to [HttpClient](https://github.com/http-kit/http-kit/blob/master/src/java/org/httpkit/client/HttpClient.java). - HttpClient runs as a single background thread that takes...
Also regarding this issue I had some issues mocking the `RedisClient` as well. My current test setup uses [ScalaMock](http://scalamock.org/), the main issue I fell with trying to implement mocks is...
I think you should use the vim syntax for that, try ``` vim Project expand('$USERPROFILE') . '/projects/p2' ```