mirror of
https://github.com/python/cpython.git
synced 2025-10-07 07:31:46 +00:00
gh-93096: Remove python -m codecs
(gh-94233)
This commit is contained in:
parent
ec5e253556
commit
1bc8a38d8b
2 changed files with 2 additions and 10 deletions
|
@ -1114,13 +1114,3 @@ except LookupError:
|
|||
_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')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue