commit | fed4abcc84d9d62bb9518c93a64111796b01d612 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Tue Apr 27 21:17:22 2010 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Tue Apr 27 21:17:22 2010 +0000 |
tree | 67cdb7fb7be1c6b9d79dd7ca948148743851079a | |
parent | 5e9cc5efed5d03789d8d5bd1dd13478bf2f23baa [diff] [blame] |
fold __future__ imports
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