]> granicus.if.org Git - python/commitdiff
Doc fix for issue2637.
authorSenthil Kumaran <orsenthil@gmail.com>
Mon, 31 Aug 2009 16:43:45 +0000 (16:43 +0000)
committerSenthil Kumaran <orsenthil@gmail.com>
Mon, 31 Aug 2009 16:43:45 +0000 (16:43 +0000)
Doc/library/urllib.parse.rst

index 161614b0ca802a7a0e572d4f43dd5760de2e71c1..2163e6cc68aa7ab971b94054ab7f8e34fc244a52 100644 (file)
@@ -226,7 +226,8 @@ The :mod:`urllib.parse` module defines the following functions:
 .. 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 ``'/'``.