fold __future__ imports

This commit is contained in:
Benjamin Peterson 2010-04-27 21:17:22 +00:00
parent 5e9cc5efed
commit fed4abcc84

View file

@ -2,8 +2,7 @@
Python implementation of the io module. Python implementation of the io module.
""" """
from __future__ import print_function from __future__ import (print_function, unicode_literals)
from __future__ import unicode_literals
import os import os
import abc import abc