Remove two unneeded imports in 'io'.

This commit is contained in:
Brett Cannon 2008-08-18 00:36:52 +00:00
parent 25c9d6aa00
commit 46225e77fa
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -48,6 +48,8 @@ Core and Builtins
Library
-------
- Remove unneeded imports of 'sys' and 'warnings' from 'io'.
- Remove unneeded imports of 'warnings' from shelve, filecmp, and dummy_thread.
- Issue #3575: Incremental decoder's decode function now takes bytearray