diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2002-12-30 23:36:02 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2002-12-30 23:36:02 (GMT) |
commit | 6ec0a8ab93d4a77c118c391c2e141e27c0018e27 (patch) | |
tree | 60664974bd3fa990555535237b756b019833b886 /Lib/codecs.py | |
parent | a872595f31bccd0c11f950a49eb29c57f5a53f85 (diff) | |
download | cpython-6ec0a8ab93d4a77c118c391c2e141e27c0018e27.zip cpython-6ec0a8ab93d4a77c118c391c2e141e27c0018e27.tar.gz cpython-6ec0a8ab93d4a77c118c391c2e141e27c0018e27.tar.bz2 |
sys was already imported, remove second import
Diffstat (limited to 'Lib/codecs.py')
-rw-r--r-- | Lib/codecs.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/codecs.py b/Lib/codecs.py index b377979..1bf4c8d 100644 --- a/Lib/codecs.py +++ b/Lib/codecs.py @@ -705,8 +705,6 @@ if _false: if __name__ == '__main__': - import sys - # Make stdout translate Latin-1 output into UTF-8 output sys.stdout = EncodedFile(sys.stdout, 'latin-1', 'utf-8') |