diff options
author | R David Murray <rdmurray@bitdance.com> | 2011-06-23 00:00:27 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2011-06-23 00:00:27 (GMT) |
commit | 1d3365106d6f2a5205adbf9a6f6fa8d7f1bbe271 (patch) | |
tree | 92136715fe18b51f6a19779b857c696dcf4bad37 /Doc/library/urllib.rst | |
parent | ecb863b29ecaa4cd48679a45e9f9455b1f717f8b (diff) | |
download | cpython-1d3365106d6f2a5205adbf9a6f6fa8d7f1bbe271.zip cpython-1d3365106d6f2a5205adbf9a6f6fa8d7f1bbe271.tar.gz cpython-1d3365106d6f2a5205adbf9a6f6fa8d7f1bbe271.tar.bz2 |
#12389: fix missing space at sentence end.
Diffstat (limited to 'Doc/library/urllib.rst')
-rw-r--r-- | Doc/library/urllib.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/urllib.rst b/Doc/library/urllib.rst index 7f97673..503760b 100644 --- a/Doc/library/urllib.rst +++ b/Doc/library/urllib.rst @@ -210,7 +210,7 @@ Utility functions Replace special characters in *string* using the ``%xx`` escape. Letters, digits, and the characters ``'_.-'`` are never quoted. By default, this - function is intended for quoting the path section of the URL.The optional + function is intended for quoting the path section of the URL. The optional *safe* parameter specifies additional characters that should not be quoted --- its default value is ``'/'``. |