summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_io.py
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-03-26 23:13:59 (GMT)
committerChristian Heimes <christian@cheimes.de>2008-03-26 23:13:59 (GMT)
commit3784c6b1af17965de8c3c27e071b91e8a1a30848 (patch)
treeec732391b65b60f6e5fe608c8f8165d4109fe38f /Lib/test/test_io.py
parentdf70e05d2204aad60396c4f110d9783269708843 (diff)
downloadcpython-3784c6b1af17965de8c3c27e071b91e8a1a30848.zip
cpython-3784c6b1af17965de8c3c27e071b91e8a1a30848.tar.gz
cpython-3784c6b1af17965de8c3c27e071b91e8a1a30848.tar.bz2
Use the new unicode literals for the io module
use basestring instead of str in Python 2.x
Diffstat (limited to 'Lib/test/test_io.py')
-rw-r--r--Lib/test/test_io.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_io.py b/Lib/test/test_io.py
index 1791705..e26b708 100644
--- a/Lib/test/test_io.py
+++ b/Lib/test/test_io.py
@@ -1,5 +1,6 @@
"""Unit tests for io.py."""
from __future__ import print_function
+from __future__ import unicode_literals
import os
import sys