diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-04-27 21:17:22 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-04-27 21:17:22 (GMT) |
commit | fed4abcc84d9d62bb9518c93a64111796b01d612 (patch) | |
tree | 67cdb7fb7be1c6b9d79dd7ca948148743851079a /Lib/_pyio.py | |
parent | 5e9cc5efed5d03789d8d5bd1dd13478bf2f23baa (diff) | |
download | cpython-fed4abcc84d9d62bb9518c93a64111796b01d612.zip cpython-fed4abcc84d9d62bb9518c93a64111796b01d612.tar.gz cpython-fed4abcc84d9d62bb9518c93a64111796b01d612.tar.bz2 |
fold __future__ imports
Diffstat (limited to 'Lib/_pyio.py')
-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 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 |