diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-04-27 21:18:30 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-04-27 21:18:30 (GMT) |
commit | 27737259b49fe39789bb59fefc86fff9e2e37daf (patch) | |
tree | bf65e089bbe482ad51483aaf3ee650dff13fa863 | |
parent | fed4abcc84d9d62bb9518c93a64111796b01d612 (diff) | |
download | cpython-27737259b49fe39789bb59fefc86fff9e2e37daf.zip cpython-27737259b49fe39789bb59fefc86fff9e2e37daf.tar.gz cpython-27737259b49fe39789bb59fefc86fff9e2e37daf.tar.bz2 |
condense import
-rw-r--r-- | Lib/_pyio.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/_pyio.py b/Lib/_pyio.py index 43ca86c..57cdc46 100644 --- a/Lib/_pyio.py +++ b/Lib/_pyio.py @@ -15,8 +15,7 @@ except ImportError: from dummy_thread import allocate_lock as Lock import io -from io import __all__ -from io import SEEK_SET, SEEK_CUR, SEEK_END +from io import (__all__, SEEK_SET, SEEK_CUR, SEEK_END) __metaclass__ = type |