Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions Lib/codecs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Removed undocumented ``python -m codecs``. Use ``python -m unittest
test.test_codecs.EncodedFileTest`` instead.