diff options
author | Georg Brandl <georg@python.org> | 2008-11-22 08:31:09 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-11-22 08:31:09 (GMT) |
commit | 5076740d4ff986bdaaf8df2e69671cadd710f0dd (patch) | |
tree | 0478a4c640a16dfafc7a18d3821b377f044021e3 /Doc/library/string.rst | |
parent | 4216d2d802e84698c6bfbc3c83c1fb387ce9bdba (diff) | |
download | cpython-5076740d4ff986bdaaf8df2e69671cadd710f0dd.zip cpython-5076740d4ff986bdaaf8df2e69671cadd710f0dd.tar.gz cpython-5076740d4ff986bdaaf8df2e69671cadd710f0dd.tar.bz2 |
#4361: fix string.py docstring, clarify that only ASCII characters are in its constants.
Diffstat (limited to 'Doc/library/string.rst')
-rw-r--r-- | Doc/library/string.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/string.rst b/Doc/library/string.rst index 63caa4c..37704b0 100644 --- a/Doc/library/string.rst +++ b/Doc/library/string.rst @@ -71,7 +71,7 @@ The constants defined in this module are: .. data:: whitespace - A string containing all characters that are considered whitespace. + A string containing all ASCII characters that are considered whitespace. This includes the characters space, tab, linefeed, return, formfeed, and vertical tab. |