Doc fix for issue2637.

This commit is contained in:
Senthil Kumaran 2009-08-31 16:43:45 +00:00
parent 9b3d557917
commit 8aa8bbe611
1 changed files with 2 additions and 1 deletions

View 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 ``'/'``.