From fed4abcc84d9d62bb9518c93a64111796b01d612 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Tue, 27 Apr 2010 21:17:22 +0000 Subject: fold __future__ imports --- Lib/_pyio.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Lib/_pyio.py b/Lib/_pyio.py index aea9a2e..43ca86c 100644 --- a/Lib/_pyio.py +++ b/Lib/_pyio.py @@ -2,8 +2,7 @@ Python implementation of the io module. """ -from __future__ import print_function -from __future__ import unicode_literals +from __future__ import (print_function, unicode_literals) import os import abc -- cgit v0.12