Files
requests/docs/user
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-29 23:33:51 -04:00
2013-07-19 17:04:53 +08:00
2017-05-27 17:25:44 -04:00