[Python-3000-checkins] r65120 - python/branches/py3k/Doc/library/cgi.rst

georg.brandl python-3000-checkins at python.org
Fri Jul 18 23:09:41 CEST 2008


Author: georg.brandl
Date: Fri Jul 18 23:09:40 2008
New Revision: 65120

Log:
Fix urllib function reference.


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

Modified: python/branches/py3k/Doc/library/cgi.rst
==============================================================================
--- python/branches/py3k/Doc/library/cgi.rst	(original)
+++ python/branches/py3k/Doc/library/cgi.rst	Fri Jul 18 23:09:40 2008
@@ -277,7 +277,7 @@
    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
+   Use the :func:`urllib.parse.urlencode` function to convert such dictionaries into
    query strings.
 
 
@@ -297,7 +297,7 @@
    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 lists of pairs into
+   Use the :func:`urllib.parse.urlencode` function to convert such lists of pairs into
    query strings.
 
 


More information about the Python-3000-checkins mailing list