diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-04-03 15:12:41 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-04-03 15:12:41 (GMT) |
commit | 9f8a8910a415e31808debe6e9fed7f7c3638d42a (patch) | |
tree | ffa59e04328fee48f702a8f1ec628a8a83e7b881 /Lib/email | |
parent | 72dcb0a7658c6dd99c2798b515c76e8cb311dbf6 (diff) | |
download | cpython-9f8a8910a415e31808debe6e9fed7f7c3638d42a.zip cpython-9f8a8910a415e31808debe6e9fed7f7c3638d42a.tar.gz cpython-9f8a8910a415e31808debe6e9fed7f7c3638d42a.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. |