summaryrefslogtreecommitdiff
path: root/Lib/codecs.py
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2002-12-30 23:36:02 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2002-12-30 23:36:02 +0000
commit6ec0a8ab93d4a77c118c391c2e141e27c0018e27 (patch)
tree60664974bd3fa990555535237b756b019833b886 /Lib/codecs.py
parenta872595f31bccd0c11f950a49eb29c57f5a53f85 (diff)
downloadcpython-git-6ec0a8ab93d4a77c118c391c2e141e27c0018e27.tar.gz
sys was already imported, remove second import
Diffstat (limited to 'Lib/codecs.py')
-rw-r--r--Lib/codecs.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/codecs.py b/Lib/codecs.py
index b377979e2c..1bf4c8d57a 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')