Document the Response.close() method.

This commit is contained in:
Cory Benfield
2013-07-25 19:10:42 +01:00
parent 3becc47366
commit f401287afb
+5
View File
@@ -689,4 +689,9 @@ class Response(object):
raise HTTPError(http_error_msg, response=self)
def close(self):
"""Closes the underlying file descriptor and releases the connection
back to the pool.
*Note: Should not normally need to be called explicitly.*
"""
return self.raw.release_conn()