diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-07-04 16:49:46 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-07-04 16:49:46 (GMT) |
commit | 1b84b5fd6422fbedbd038a9774df8d8904a66367 (patch) | |
tree | a41f23c5c74c9372f5e1359d1dbb1e2806cacc60 /Lib/lib2to3/tests | |
parent | a441e6465a26b00730cbeae09cf89bcfba6a7c78 (diff) | |
download | cpython-1b84b5fd6422fbedbd038a9774df8d8904a66367.zip cpython-1b84b5fd6422fbedbd038a9774df8d8904a66367.tar.gz cpython-1b84b5fd6422fbedbd038a9774df8d8904a66367.tar.bz2 |
Merged revisions 82542 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r82542 | benjamin.peterson | 2010-07-04 11:44:15 -0500 (Sun, 04 Jul 2010) | 17 lines
Merged revisions 81478,82530-82531 via svnmerge from
svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3
........
r81478 | benjamin.peterson | 2010-05-22 13:47:39 -0500 (Sat, 22 May 2010) | 1 line
ensure doctests have some future_features
........
r82530 | benjamin.peterson | 2010-07-04 11:11:41 -0500 (Sun, 04 Jul 2010) | 1 line
simplify ignore star imports from itertools #8892
........
r82531 | benjamin.peterson | 2010-07-04 11:13:20 -0500 (Sun, 04 Jul 2010) | 1 line
wrap with parenthesis not \
........
................
Diffstat (limited to 'Lib/lib2to3/tests')
-rw-r--r-- | Lib/lib2to3/tests/test_fixers.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/lib2to3/tests/test_fixers.py b/Lib/lib2to3/tests/test_fixers.py index 855b4bb..91853a4 100644 --- a/Lib/lib2to3/tests/test_fixers.py +++ b/Lib/lib2to3/tests/test_fixers.py @@ -3670,6 +3670,10 @@ class Test_itertools_imports(FixerTestCase): a = "from itertools import bar, filterfalse, foo" self.check(b, a) + def test_import_star(self): + s = "from itertools import *" + self.unchanged(s) + def test_unchanged(self): s = "from itertools import foo" |