diff options
author | Eric Smith <eric@trueblade.com> | 2008-03-20 23:02:08 (GMT) |
---|---|---|
committer | Eric Smith <eric@trueblade.com> | 2008-03-20 23:02:08 (GMT) |
commit | 87824086fa20e3f7bbb39dc8ee9d3ce70487dd98 (patch) | |
tree | 6c61ebeee2100ff264c4fd81f627fb984240d76e /Lib/test | |
parent | 2eb2c7c3848fdc16a2c6bad6660411d0cf1c5208 (diff) | |
download | cpython-87824086fa20e3f7bbb39dc8ee9d3ce70487dd98.zip cpython-87824086fa20e3f7bbb39dc8ee9d3ce70487dd98.tar.gz cpython-87824086fa20e3f7bbb39dc8ee9d3ce70487dd98.tar.bz2 |
Add __future__ import for print_function. It's a no-op in 3.0, but it needs to not be a syntax error.
Closes issue 2436.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_print.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Lib/test/test_print.py b/Lib/test/test_print.py index 10ef60a..4d347ed 100644 --- a/Lib/test/test_print.py +++ b/Lib/test/test_print.py @@ -1,6 +1,8 @@ """Test correct operation of the print function. """ +from __future__ import print_function + import unittest from test import test_support @@ -98,6 +100,11 @@ class TestPrint(unittest.TestCase): x('*\n', (ClassWith__str__('*'),)) x('abc 1\n', (ClassWith__str__('abc'), 1)) +# # 2.x unicode tests +# x(u'1 2\n', ('1', u'2')) +# x(u'u\1234\n', (u'u\1234',)) +# x(u' abc 1\n', (' ', ClassWith__str__(u'abc'), 1)) + # errors self.assertRaises(TypeError, print, '', sep=3) self.assertRaises(TypeError, print, '', end=3) |