]> granicus.if.org Git - python/commitdiff
Merged revisions 81774-81775 via svnmerge from
authorBenjamin Peterson <benjamin@python.org>
Sun, 6 Jun 2010 02:32:09 +0000 (02:32 +0000)
committerBenjamin Peterson <benjamin@python.org>
Sun, 6 Jun 2010 02:32:09 +0000 (02:32 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r81774 | benjamin.peterson | 2010-06-05 19:50:58 -0500 (Sat, 05 Jun 2010) | 1 line

  remove extra space
........
  r81775 | benjamin.peterson | 2010-06-05 19:54:29 -0500 (Sat, 05 Jun 2010) | 1 line

  fix sphinx warning with an extra space
........

Doc/library/urllib.parse.rst

index 455925ebdbf5121bfc8844b157e88cc23449a99e..3d13efceac34d2fe20dd75d75e7fff68dffcfb02 100644 (file)
@@ -312,7 +312,7 @@ The :mod:`urllib.parse` module defines the following functions:
 
 .. function:: urlencode(query, doseq=False)
 
-   Convert a mapping object or a sequence of two-element tuples  to a
+   Convert a mapping object or a sequence of two-element tuples to a
    "url-encoded" string, suitable to pass to :func:`urlopen` above as the
    optional *data* argument.  This is useful to pass a dictionary of form
    fields to a ``POST`` request.  The resulting string is a series of
@@ -321,7 +321,7 @@ The :mod:`urllib.parse` module defines the following functions:
    two-element tuples is used as the *query* argument, the first element of
    each tuple is a key and the second is a value. The value element in itself
    can be a sequence and in that case, if the optional parameter *doseq* is
-   evaluates to *True*, individual ``key=value`` pairs separated by ``'&'``are
+   evaluates to *True*, individual ``key=value`` pairs separated by ``'&'`` are
    generated for each element of the value sequence for the key.  The order of
    parameters in the encoded string will match the order of parameter tuples in
    the sequence. This module provides the functions :func:`parse_qs` and