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.

classification
Title: httplib docs mentioning HTTPConnection.getreply
Type: Stage:
Components: Documentation Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: georg.brandl, georg.brandl
Priority: normal Keywords:

Created on 2005-05-15 20:53 by georg.brandl, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg25325 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2005-05-15 20:53
... instead of getresponse in the description of send().

Also, a general note or explanation like that could be
given before the description of send():

"""
You can send requests in two ways: either using the
request() method as described above, which combines all
request parameters, or using a sequence of
putrequest(), zero or more times addheader(),
endheaders() and then send().
"""

It is sort of confusing in its current state.

Oh yes, and while you're at it ;), you could add a note
that the response object must be read completely before
a new request can be sent.
msg25326 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2005-06-25 19:17
Logged In: YES 
user_id=1188172

Fixed in Doc/lib/libhttplib.tex r1.39, r1.38.2.1.
History
Date User Action Args
2022-04-11 14:56:11adminsetgithub: 41986
2005-05-15 20:53:33georg.brandlcreate