diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-04-03 15:13:23 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-04-03 15:13:23 (GMT) |
commit | 50ef0f41afd313ed3c433f724e6aaa79d7e55c02 (patch) | |
tree | e33b1fe0c2fb07b6b65b7ad5f5c0e56adce7c465 /Lib/textwrap.py | |
parent | 32ed7509523517a3737e45123609048c75440591 (diff) | |
parent | 9f8a8910a415e31808debe6e9fed7f7c3638d42a (diff) | |
download | cpython-50ef0f41afd313ed3c433f724e6aaa79d7e55c02.zip cpython-50ef0f41afd313ed3c433f724e6aaa79d7e55c02.tar.gz cpython-50ef0f41afd313ed3c433f724e6aaa79d7e55c02.tar.bz2 |
Escaped backslashes in docstrings.
Diffstat (limited to 'Lib/textwrap.py')
-rw-r--r-- | Lib/textwrap.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/textwrap.py b/Lib/textwrap.py index 49ea9a6..3ad3e18 100644 --- a/Lib/textwrap.py +++ b/Lib/textwrap.py @@ -148,7 +148,7 @@ class TextWrapper: """_munge_whitespace(text : string) -> string Munge whitespace in text: expand tabs and convert all other - whitespace characters to spaces. Eg. " foo\tbar\n\nbaz" + whitespace characters to spaces. Eg. " foo\\tbar\\n\\nbaz" becomes " foo bar baz". """ if self.expand_tabs: @@ -184,7 +184,7 @@ class TextWrapper: """_fix_sentence_endings(chunks : [string]) Correct for sentence endings buried in 'chunks'. Eg. when the - original text contains "... foo.\nBar ...", munge_whitespace() + original text contains "... foo.\\nBar ...", munge_whitespace() and split() will convert that to [..., "foo.", " ", "Bar", ...] which has one too few spaces; this method simply changes the one space to two. @@ -420,7 +420,7 @@ def dedent(text): in indented form. Note that tabs and spaces are both treated as whitespace, but they - are not equal: the lines " hello" and "\thello" are + are not equal: the lines " hello" and "\\thello" are considered to have no common leading whitespace. (This behaviour is new in Python 2.5; older versions of this module incorrectly expanded tabs before searching for common leading whitespace.) |