From: R David Murray Date: Thu, 23 Jun 2011 00:00:27 +0000 (-0400) Subject: #12389: fix missing space at sentence end. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1d3365106d6f2a5205adbf9a6f6fa8d7f1bbe271;p=python #12389: fix missing space at sentence end. --- diff --git a/Doc/library/urllib.rst b/Doc/library/urllib.rst index 7f97673eb8..503760b5b0 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 ``'/'``.