From 27737259b49fe39789bb59fefc86fff9e2e37daf Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Tue, 27 Apr 2010 21:18:30 +0000 Subject: condense import --- Lib/_pyio.py | 3 +-- 1 file changed, 1 insertion(+), 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 -- cgit v0.12