diff options
author | Guido van Rossum <guido@python.org> | 1995-03-07 10:14:09 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-03-07 10:14:09 (GMT) |
commit | 6c4f003202bade83791c754cd94e28c1c2fb10fa (patch) | |
tree | 749a24c8924e8b4e717cf0267b1c93791f30d3f5 /Doc/lib/libhttplib.tex | |
parent | d01c100713ed5f4490300c16501407b86e789e5d (diff) | |
download | cpython-6c4f003202bade83791c754cd94e28c1c2fb10fa.zip cpython-6c4f003202bade83791c754cd94e28c1c2fb10fa.tar.gz cpython-6c4f003202bade83791c754cd94e28c1c2fb10fa.tar.bz2 |
changes (suggested) by Soren Larsen
Diffstat (limited to 'Doc/lib/libhttplib.tex')
-rw-r--r-- | Doc/lib/libhttplib.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/lib/libhttplib.tex b/Doc/lib/libhttplib.tex index e36bba4..0d7ac4f 100644 --- a/Doc/lib/libhttplib.tex +++ b/Doc/lib/libhttplib.tex @@ -6,7 +6,7 @@ This module defines a class which implements the client side of the HTTP protocol. It is normally not used directly --- the module -\code{urlllib} module uses it to handle URLs that use HTTP. +\code{urllib} uses it to handle URLs that use HTTP. \stmodindex{urllib} The module defines one class, \code{HTTP}. An \code{HTTP} instance @@ -80,7 +80,7 @@ Send a blank line to the server, signalling the end of the headers. Complete the request by shutting down the sending end of the socket, read the reply from the server, and return a triple (\var{replycode}, \var{message}, \var{headers}). Here \var{replycode} is the integer -reply code from the request (e.g. \code{200} if the request was +reply code from the request (e.g.\ \code{200} if the request was handled properly); \var{message} is the message string corresponding to the reply code; and \var{header} is an instance of the class \code{rfc822.Message} containing the headers received from the server. |