diff options
author | Senthil Kumaran <orsenthil@gmail.com> | 2010-09-21 01:59:54 (GMT) |
---|---|---|
committer | Senthil Kumaran <orsenthil@gmail.com> | 2010-09-21 01:59:54 (GMT) |
commit | 19e9d3fcc698ea183e1d617fdc8bc6638aa38be9 (patch) | |
tree | bac6dbbb8b2c10e0bd1069a0c770fc9b7eca8c74 /Doc | |
parent | 4a5dd5c576790256b1de25e8896c332a5e125637 (diff) | |
download | cpython-19e9d3fcc698ea183e1d617fdc8bc6638aa38be9.zip cpython-19e9d3fcc698ea183e1d617fdc8bc6638aa38be9.tar.gz cpython-19e9d3fcc698ea183e1d617fdc8bc6638aa38be9.tar.bz2 |
Merged revisions 84933 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r84933 | senthil.kumaran | 2010-09-21 07:27:43 +0530 (Tue, 21 Sep 2010) | 3 lines
Document HTTPReponse.fileno() method
........
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/http.client.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/http.client.rst b/Doc/library/http.client.rst index 7cdbbcf..e719ca6 100644 --- a/Doc/library/http.client.rst +++ b/Doc/library/http.client.rst @@ -458,6 +458,9 @@ statement. Return a list of (header, value) tuples. +.. method:: HTTPResponse.fileno() + + Return the ``fileno`` of the underlying socket. .. attribute:: HTTPResponse.msg |