mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
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 \ ........
This commit is contained in:
parent
e2f44beebd
commit
766f5d9d73
2 changed files with 9 additions and 2 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue