diff options
author | Georg Brandl <georg@python.org> | 2008-12-05 07:32:56 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-12-05 07:32:56 (GMT) |
commit | 7fe2c4af0e58d8c7a9f3f91c29559b14fb78c58d (patch) | |
tree | 2c69d327a30ed5c3fbff2d4e3c628730903d789d /Doc/library/urllib.parse.rst | |
parent | 4f3359f45be329e72ab78334aba4470bc9976501 (diff) | |
download | cpython-7fe2c4af0e58d8c7a9f3f91c29559b14fb78c58d.zip cpython-7fe2c4af0e58d8c7a9f3f91c29559b14fb78c58d.tar.gz cpython-7fe2c4af0e58d8c7a9f3f91c29559b14fb78c58d.tar.bz2 |
#4355: refer to urlencode in the correct module.
Diffstat (limited to 'Doc/library/urllib.parse.rst')
-rw-r--r-- | Doc/library/urllib.parse.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/urllib.parse.rst b/Doc/library/urllib.parse.rst index 26376e7..d013601 100644 --- a/Doc/library/urllib.parse.rst +++ b/Doc/library/urllib.parse.rst @@ -106,8 +106,8 @@ The :mod:`urllib.parse` module defines the following functions: parsing errors. If false (the default), errors are silently ignored. If true, errors raise a :exc:`ValueError` exception. - Use the :func:`urllib.urlencode` function to convert such dictionaries into - query strings. + Use the :func:`urllib.parse.urlencode` function to convert such + dictionaries into query strings. .. function:: parse_qsl(qs[, keep_blank_values[, strict_parsing]]) |