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/email | |
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/email')
-rw-r--r-- | Lib/email/_encoded_words.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/email/_encoded_words.py b/Lib/email/_encoded_words.py index 9e0cc75..5eaab36 100644 --- a/Lib/email/_encoded_words.py +++ b/Lib/email/_encoded_words.py @@ -152,7 +152,7 @@ def decode(ew): then from the resulting bytes into unicode using the specified charset. If the cte-decoded string does not successfully decode using the specified character set, a defect is added to the defects list and the unknown octets - are replaced by the unicode 'unknown' character \uFDFF. + are replaced by the unicode 'unknown' character \\uFDFF. The specified charset and language are returned. The default for language, which is rarely if ever encountered, is the empty string. |