From f0a39af1ae37817bb6effc227a0db998c72d8280 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Mon, 18 Aug 2008 00:39:30 +0000 Subject: [PATCH] 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'. ........ --- Lib/io.py | 1 - 1 file changed, 1 deletion(-) 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 -- 2.40.0