From: Neal Norwitz Date: Mon, 30 Dec 2002 23:36:02 +0000 (+0000) Subject: sys was already imported, remove second import X-Git-Tag: v2.3c1~2769 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6ec0a8ab93d4a77c118c391c2e141e27c0018e27;p=thirdparty%2FPython%2Fcpython.git sys was already imported, remove second import --- diff --git a/Lib/codecs.py b/Lib/codecs.py index b377979e2ca5..1bf4c8d57aa0 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')