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/codecs.py | |
parent | 72dcb0a7658c6dd99c2798b515c76e8cb311dbf6 (diff) | |
download | cpython-9f8a8910a415e31808debe6e9fed7f7c3638d42a.zip cpython-9f8a8910a415e31808debe6e9fed7f7c3638d42a.tar.gz cpython-9f8a8910a415e31808debe6e9fed7f7c3638d42a.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 145bf12..66dd024 100644 --- a/Lib/codecs.py +++ b/Lib/codecs.py @@ -1061,7 +1061,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 = {} |