[Python-checkins] r84018 - python/branches/py3k/Doc/faq/library.rst

georg.brandl python-checkins at python.org
Sat Aug 14 17:48:49 CEST 2010


Author: georg.brandl
Date: Sat Aug 14 17:48:49 2010
New Revision: 84018

Log:
Typo fix.

Modified:
   python/branches/py3k/Doc/faq/library.rst

Modified: python/branches/py3k/Doc/faq/library.rst
==============================================================================
--- python/branches/py3k/Doc/faq/library.rst	(original)
+++ python/branches/py3k/Doc/faq/library.rst	Sat Aug 14 17:48:49 2010
@@ -666,8 +666,8 @@
                                 '/cgi-bin/some-cgi-script', data=qs)
    msg, hdrs = req.read(), req.info()
 
-Note that in general for a percent-encoded POST operations, query strings must be
-quoted by using :func:`urllib.parse.urlencode`.  For example to send name="Guy Steele,
+Note that in general for percent-encoded POST operations, query strings must be
+quoted using :func:`urllib.parse.urlencode`.  For example to send name="Guy Steele,
 Jr."::
 
    >>> import urllib.parse


More information about the Python-checkins mailing list