This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ThomasH
Recipients ThomasH, georg.brandl
Date 2008-07-22.17:31:19
SpamBayes Score 0.00147831
Marked as misclassified No
Message-id <1216747880.73.0.0581734704537.issue3430@psf.upfronthosting.co.za>
In-reply-to
Content
The library reference documentation of httplib.HTTPResponse does not
match up with the online help documentation, or with the dir()
information of a particular instance.

E.g. the list of public features in the library reference
(http://docs.python.org/lib/httpresponse-objects.html) is:
- read
- getheader
- getheaders
- msg
- version
- status
- reason

From the online documentation (with 'help(httplib.HTTPResponse)'):
- begin
- close
- getheader
- getheaders
- isclosed
- read

And from a class instance (via 'dir(httpResponseInstance)'):
- 'begin',
- 'chunk_left',
- 'chunked',
- 'close',
- 'debuglevel',
- 'fp',
- 'getheader',
- 'getheaders',
- 'isclosed',
- 'length',
- 'msg',
- 'read',
- 'reason',
- 'status',
- 'strict',
- 'version',
- 'will_close'
History
Date User Action Args
2008-07-22 17:31:21ThomasHsetspambayes_score: 0.00147831 -> 0.00147831
recipients: + ThomasH, georg.brandl
2008-07-22 17:31:20ThomasHsetspambayes_score: 0.00147831 -> 0.00147831
messageid: <1216747880.73.0.0581734704537.issue3430@psf.upfronthosting.co.za>
2008-07-22 17:31:20ThomasHlinkissue3430 messages
2008-07-22 17:31:19ThomasHcreate