Some nits.

This commit is contained in:
Georg Brandl 2007-03-26 20:28:28 +00:00
parent 51b7abc519
commit f03facfe90
3 changed files with 10 additions and 10 deletions

View file

@ -32,12 +32,11 @@ An \class{HTTPConnection} instance represents one transaction with an HTTP
server. It should be instantiated passing it a host and optional port number.
If no port number is passed, the port is extracted from the host string if it
has the form \code{\var{host}:\var{port}}, else the default HTTP port (80) is
used.
When True the optional parameter \var{strict}
used. When True, the optional parameter \var{strict}
causes \code{BadStatusLine} to be raised if the status line can't be parsed
as a valid HTTP/1.0 or 1.1 status line. If the optional \var{timeout}
parameter is given, connection attempts will timeout after that many
seconds (if no timeout is passed, or is passed as None, the global default
seconds (if it is not given or \code{None}, the global default
timeout setting is used).
For example, the following calls all create instances that connect to