]> granicus.if.org Git - python/commitdiff
Minor change in the wording.
authorSenthil Kumaran <orsenthil@gmail.com>
Sat, 3 Jul 2010 18:04:31 +0000 (18:04 +0000)
committerSenthil Kumaran <orsenthil@gmail.com>
Sat, 3 Jul 2010 18:04:31 +0000 (18:04 +0000)
Doc/library/urllib.parse.rst

index cfd995d4362aa121ada6668eedd8f1b906c41578..c9ca9ab67b7b068f9685b6662443e79b2c5aaec4 100644 (file)
@@ -309,8 +309,8 @@ The :mod:`urllib.parse` module defines the following functions:
 
 .. function:: urlencode(query, doseq=False, safe='', encoding=None, errors=None)
 
-   Convert a mapping object or a sequence of two-element, which may either be a
-   :class:`str` or a :class:`bytes` tuples,  to a "url-encoded" string,
+   Convert a mapping object or a sequence of two-element tuples, which may
+   either be a :class:`str` or a :class:`bytes`,  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 ``key=value`` pairs separated by ``'&'``