diff options
author | Anthony Sottile <asottile@umich.edu> | 2018-09-11 00:54:37 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2018-09-11 00:54:37 (GMT) |
commit | ed2e9ab804606019f167ef914bde43bc135c725f (patch) | |
tree | 1e2a258d09edee42eb7a204335fd92ead409158f /Lib/encodings | |
parent | ce34410b8b67f49d8275c05d51b3ead50cf97f48 (diff) | |
download | cpython-ed2e9ab804606019f167ef914bde43bc135c725f.zip cpython-ed2e9ab804606019f167ef914bde43bc135c725f.tar.gz cpython-ed2e9ab804606019f167ef914bde43bc135c725f.tar.bz2 |
Remove obsolete comment about latin-1 in `normalize_encoding` (GH-8739)
This docstring has drifted since python2: https://github.com/python/cpython/blob/ca079a3ea30098aff3197c559a0e32d42dda6d84/Lib/encodings/__init__.py#L68
Diffstat (limited to 'Lib/encodings')
-rw-r--r-- | Lib/encodings/__init__.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/encodings/__init__.py b/Lib/encodings/__init__.py index 025b7a8..d737d53 100644 --- a/Lib/encodings/__init__.py +++ b/Lib/encodings/__init__.py @@ -49,8 +49,7 @@ def normalize_encoding(encoding): collapsed and replaced with a single underscore, e.g. ' -;#' becomes '_'. Leading and trailing underscores are removed. - Note that encoding names should be ASCII only; if they do use - non-ASCII characters, these must be Latin-1 compatible. + Note that encoding names should be ASCII only. """ if isinstance(encoding, bytes): |