summaryrefslogtreecommitdiff
path: root/Lib/test/test_future.py
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-10-26 20:58:53 +0000
committerBenjamin Peterson <benjamin@python.org>2008-10-26 20:58:53 +0000
commit9aebc61ad8e3b0eddd43dc563380025cc2fd8d02 (patch)
tree95a3c735956df93136a3604b56510f3f103f636c /Lib/test/test_future.py
parentcff882ce21f0870da9f59f4e1dad094caa379f5a (diff)
downloadcpython-git-9aebc61ad8e3b0eddd43dc563380025cc2fd8d02.tar.gz
Merged revisions 67030-67031 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r67030 | benjamin.peterson | 2008-10-26 15:21:13 -0500 (Sun, 26 Oct 2008) | 1 line fix __future__ imports when multiple features are given ........ r67031 | benjamin.peterson | 2008-10-26 15:33:19 -0500 (Sun, 26 Oct 2008) | 1 line add forgotten test for r67030 ........
Diffstat (limited to 'Lib/test/test_future.py')
-rw-r--r--Lib/test/test_future.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/Lib/test/test_future.py b/Lib/test/test_future.py
index 494f539a36..8846f6a8d1 100644
--- a/Lib/test/test_future.py
+++ b/Lib/test/test_future.py
@@ -89,19 +89,23 @@ class FutureTest(unittest.TestCase):
# the parser hack disabled. If a new keyword is introduced in
# 2.6, change this to refer to the new future import.
try:
- exec("from __future__ import division, with_statement; with = 0")
+ exec("from __future__ import print_function; print 0")
except SyntaxError:
pass
else:
self.fail("syntax error didn't occur")
try:
- exec("from __future__ import (with_statement, division); with = 0")
+ exec("from __future__ import (print_function); print 0")
except SyntaxError:
pass
else:
self.fail("syntax error didn't occur")
+ def test_multiple_features(self):
+ support.unload("test.test_future5")
+ from test import test_future5
+
def test_main():
support.run_unittest(FutureTest)