[Python-checkins] r74609 - python/branches/py3k/Doc/library/urllib.parse.rst

senthil.kumaran python-checkins at python.org
Mon Aug 31 18:43:45 CEST 2009


Author: senthil.kumaran
Date: Mon Aug 31 18:43:45 2009
New Revision: 74609

Log:
Doc fix for issue2637.



Modified:
   python/branches/py3k/Doc/library/urllib.parse.rst

Modified: python/branches/py3k/Doc/library/urllib.parse.rst
==============================================================================
--- python/branches/py3k/Doc/library/urllib.parse.rst	(original)
+++ python/branches/py3k/Doc/library/urllib.parse.rst	Mon Aug 31 18:43:45 2009
@@ -226,7 +226,8 @@
 .. function:: quote(string[, safe[, encoding[, errors]]])
 
    Replace special characters in *string* using the ``%xx`` escape. Letters,
-   digits, and the characters ``'_.-'`` are never quoted. The optional *safe*
+   digits, and the characters ``'_.-'`` are never quoted. By default, this
+   function is intended for quoting the path section of URL. The optional *safe*
    parameter specifies additional ASCII characters that should not be quoted
    --- its default value is ``'/'``.
 


More information about the Python-checkins mailing list