diff options
author | Senthil Kumaran <orsenthil@gmail.com> | 2009-08-31 16:43:45 (GMT) |
---|---|---|
committer | Senthil Kumaran <orsenthil@gmail.com> | 2009-08-31 16:43:45 (GMT) |
commit | 8aa8bbe611ef35bdc478d95cd2b6487b5fc57688 (patch) | |
tree | 65ac059523927e7958887dceabab983ab44c926a | |
parent | 9b3d5579178d0ad8096339f87cde2970766105a5 (diff) | |
download | cpython-8aa8bbe611ef35bdc478d95cd2b6487b5fc57688.zip cpython-8aa8bbe611ef35bdc478d95cd2b6487b5fc57688.tar.gz cpython-8aa8bbe611ef35bdc478d95cd2b6487b5fc57688.tar.bz2 |
Doc fix for issue2637.
-rw-r--r-- | Doc/library/urllib.parse.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/urllib.parse.rst b/Doc/library/urllib.parse.rst index 161614b..2163e6c 100644 --- a/Doc/library/urllib.parse.rst +++ b/Doc/library/urllib.parse.rst @@ -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 ``'/'``. |