Files
requests3/requests
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
..
fix
2017-05-26 22:56:43 -04:00
2017-05-29 22:40:37 -04:00
2017-05-29 22:43:12 -04:00
2017-05-26 23:02:55 -04:00
2017-05-26 22:51:40 -04:00
2017-05-29 22:44:33 -04:00
2017-06-06 12:01:41 +08:00
2017-05-29 23:02:23 -04:00
2017-02-07 16:57:17 +01:00
2017-05-04 07:46:59 +02:00
2017-05-29 23:04:45 -04:00