From: R David Murray Date: Thu, 23 Jun 2011 00:00:27 +0000 (-0400) Subject: #12389: fix missing space at sentence end. X-Git-Tag: v2.7.3rc1~681 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1d3365106d6f2a5205adbf9a6f6fa8d7f1bbe271;p=thirdparty%2FPython%2Fcpython.git #12389: fix missing space at sentence end. --- diff --git a/Doc/library/urllib.rst b/Doc/library/urllib.rst index 7f97673eb8f1..503760b5b0c6 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 ``'/'``.