From: Benjamin Peterson Date: Tue, 27 Apr 2010 21:18:30 +0000 (+0000) Subject: condense import X-Git-Tag: v2.7b2~175 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=27737259b49fe39789bb59fefc86fff9e2e37daf;p=thirdparty%2FPython%2Fcpython.git condense import --- diff --git a/Lib/_pyio.py b/Lib/_pyio.py index 43ca86c53279..57cdc46b86e3 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