Files
requests/docs
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-03-01 14:52:34 -05:00
2017-05-29 23:36:50 -04:00
2017-05-29 12:11:43 -04:00
2017-05-29 23:26:50 -04:00
2017-05-29 13:28:54 -04:00
2016-02-19 00:56:14 -05:00
2016-02-19 00:56:14 -05:00