summaryrefslogtreecommitdiffstats
path: root/Lib/lib2to3/fixes/fix_itertools_imports.py
blob: 7adf6437206780198f892002e99719cea771dbfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
""" Fixer for imports of itertools.(imap|ifilter|izip|ifilterfalse) """

# Local imports
from . import basefix
from .util import BlankLine

class FixItertoolsImports(basefix.BaseFix):
    PATTERN = """
              import_from< 'from' 'itertools' 'import' imports=any >
              """ %(locals())

    def transform(self, node, results):
        imports = results['imports']
        children = imports.children[:] or [imports]
        for child in children:
            if not hasattr(child, 'value'):
                # Handle 'import ... as ...'
                continue
            if child.value in ('imap', 'izip', 'ifilter'):
                child.remove()
            elif child.value == 'ifilterfalse':
                node.changed()
                child.value = 'filterfalse'

        # Make sure the import statement is still sane
        children = imports.children[:] or [imports]
        remove_comma = True
        for child in children:
            if remove_comma and getattr(child, 'value', None) == ',':
                child.remove()
            else:
                remove_comma ^= True

        if str(children[-1]) == ',':
            children[-1].remove()

        # If there is nothing left, return a blank line
        if not (imports.children or getattr(imports, 'value', None)):
            new = BlankLine()
            new.prefix = node.get_prefix()
        else:
            new = node
        return new