diff options
author | Brett Cannon <bcannon@gmail.com> | 2008-08-18 00:36:52 +0000 |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2008-08-18 00:36:52 +0000 |
commit | 46225e77fa7419ca043170906164f062eb0bdbe0 (patch) | |
tree | 1124469ee739e4655ed4018d6fab4c5cc3bc20ae /Lib/io.py | |
parent | 25c9d6aa00a3e3b97c23a7ebab1afb3feb526699 (diff) | |
download | cpython-git-46225e77fa7419ca043170906164f062eb0bdbe0.tar.gz |
Remove two unneeded imports in 'io'.
Diffstat (limited to 'Lib/io.py')
-rw-r--r-- | Lib/io.py | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -59,10 +59,8 @@ __all__ = ["BlockingIOError", "open", "IOBase", "RawIOBase", "FileIO", import os import abc -import sys import codecs import _fileio -import warnings import threading # open() uses st_blksize whenever we can |