[Python-checkins] r88244 - python/branches/py3k/Doc/library/http.client.rst

raymond.hettinger python-checkins at python.org
Sun Jan 30 01:39:00 CET 2011


Author: raymond.hettinger
Date: Sun Jan 30 01:39:00 2011
New Revision: 88244

Log:
Typos.


Modified:
   python/branches/py3k/Doc/library/http.client.rst

Modified: python/branches/py3k/Doc/library/http.client.rst
==============================================================================
--- python/branches/py3k/Doc/library/http.client.rst	(original)
+++ python/branches/py3k/Doc/library/http.client.rst	Sun Jan 30 01:39:00 2011
@@ -36,7 +36,7 @@
    used.  If the optional *timeout* parameter is given, blocking
    operations (like connection attempts) will timeout after that many seconds
    (if it is not given, the global default timeout setting is used).
-   The optional *source_address* parameter may be a typle of a (host, port)
+   The optional *source_address* parameter may be a tuple of a (host, port)
    to use as the source address the HTTP connection is made from.
 
    For example, the following calls all create instances that connect to the server
@@ -400,7 +400,7 @@
    contents of the file is sent; this file object should support ``fileno()``
    and ``read()`` methods. The header Content-Length is automatically set to
    the length of the file as reported by stat. The *body* argument may also be
-   an iterable and Contet-Length header should be explicitly provided when the
+   an iterable and Content-Length header should be explicitly provided when the
    body is an iterable.
 
    The *headers* argument should be a mapping of extra HTTP


More information about the Python-checkins mailing list