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/codecs.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/codecs.py')
-rw-r--r-- | Lib/codecs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/codecs.py b/Lib/codecs.py index c2b5d6c..31e73bd 100644 --- a/Lib/codecs.py +++ b/Lib/codecs.py @@ -1065,7 +1065,7 @@ def make_encoding_map(decoding_map): during translation. One example where this happens is cp875.py which decodes - multiple character to \u001a. + multiple character to \\u001a. """ m = {} |