diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-07-04 16:44:15 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-07-04 16:44:15 (GMT) |
commit | 766f5d9d736ae37167534fbb2484b6dbcb70bd34 (patch) | |
tree | ff69fe82994e677e1d5f6603604764170a7f2342 /Lib/lib2to3/fixes/fix_itertools_imports.py | |
parent | e2f44beebd65f814b8b768707e8d54dbd99fbfb1 (diff) | |
download | cpython-766f5d9d736ae37167534fbb2484b6dbcb70bd34.zip cpython-766f5d9d736ae37167534fbb2484b6dbcb70bd34.tar.gz cpython-766f5d9d736ae37167534fbb2484b6dbcb70bd34.tar.bz2 |
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/fixes/fix_itertools_imports.py')
-rw-r--r-- | Lib/lib2to3/fixes/fix_itertools_imports.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Lib/lib2to3/fixes/fix_itertools_imports.py b/Lib/lib2to3/fixes/fix_itertools_imports.py index 1897e36..f4b4ead 100644 --- a/Lib/lib2to3/fixes/fix_itertools_imports.py +++ b/Lib/lib2to3/fixes/fix_itertools_imports.py @@ -20,6 +20,9 @@ class FixItertoolsImports(fixer_base.BaseFix): if child.type == token.NAME: member = child.value name_node = child + elif child.type == token.STAR: + # Just leave the import as is. + return else: assert child.type == syms.import_as_name name_node = child.children[0] @@ -44,8 +47,8 @@ class FixItertoolsImports(fixer_base.BaseFix): children[-1].remove() # If there are no imports left, just get rid of the entire statement - if not (imports.children or getattr(imports, 'value', None)) or \ - imports.parent is None: + if (not (imports.children or getattr(imports, 'value', None)) or + imports.parent is None): p = node.prefix node = BlankLine() node.prefix = p |