From: Brett Cannon Date: Mon, 18 Aug 2008 00:39:30 +0000 (+0000) Subject: Merged revisions 65791 via svnmerge from X-Git-Tag: v3.0b3~71 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f0a39af1ae37817bb6effc227a0db998c72d8280;p=python Merged revisions 65791 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r65791 | brett.cannon | 2008-08-17 17:36:52 -0700 (Sun, 17 Aug 2008) | 2 lines Remove two unneeded imports in 'io'. ........ --- diff --git a/Lib/io.py b/Lib/io.py index 4fe1e8cb68..c1513f5acc 100644 --- a/Lib/io.py +++ b/Lib/io.py @@ -57,7 +57,6 @@ __all__ = ["BlockingIOError", "open", "IOBase", "RawIOBase", "FileIO", import os import abc -import sys import codecs import _fileio # Import _thread instead of threading to reduce startup cost