gh-93096: Remove python -m codecs (gh-94233)

This commit is contained in:
Oleg Iarygin 2022-07-02 08:45:31 +03:00 committed by GitHub
parent ec5e253556
commit 1bc8a38d8b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 10 deletions

View file

@ -1114,13 +1114,3 @@ def make_encoding_map(decoding_map):
_false = 0
if _false:
import encodings
### Tests
if __name__ == '__main__':
# Make stdout translate Latin-1 output into UTF-8 output
sys.stdout = EncodedFile(sys.stdout, 'latin-1', 'utf-8')
# Have stdin translate Latin-1 input into UTF-8 input
sys.stdin = EncodedFile(sys.stdin, 'utf-8', 'latin-1')

View file

@ -0,0 +1,2 @@
Removed undocumented ``python -m codecs``. Use ``python -m unittest
test.test_codecs.EncodedFileTest`` instead.