From f401287afb7da663e622a244bbaf22fcc32fca09 Mon Sep 17 00:00:00 2001 From: Cory Benfield Date: Thu, 25 Jul 2013 19:10:42 +0100 Subject: [PATCH] Document the Response.close() method. --- requests/models.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/requests/models.py b/requests/models.py index 667b001..b5b1bd0 100644 --- a/requests/models.py +++ b/requests/models.py @@ -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() -- 2.7.4