Files
requests/tests
Ed Morley 4847f5b8cd Allow Requests.Response to be used as a context manager
This saves having to wrap the call to requests with
`contextlib.closing()`, allowing it to be used directly in a
`with` statement, like so:

```
with requests.get('http://httpbin.org/get', stream=True) as r:
    # Do things with the response here.
```

Fixes #4136.
2017-06-06 23:30:47 +01:00
..
2017-05-26 22:53:28 -04:00
2017-05-29 12:11:43 -04:00
2017-05-28 13:05:09 -04:00
2017-05-29 12:11:43 -04:00