fix_next.py 3.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
"""Fixer for it.next() -> next(it), per PEP 3114."""
# Author: Collin Winter

# Things that currently aren't covered:
#   - listcomp "next" names aren't warned
#   - "with" statement targets aren't checked

# Local imports
from ..pgen2 import token
from ..pygram import python_symbols as syms
11
from .. import fixer_base
12
from ..fixer_util import Name, Call, find_binding
13 14 15 16

bind_warning = "Calls to builtin next() possibly shadowed by global binding"


17
class FixNext(fixer_base.BaseFix):
Benjamin Peterson's avatar
Benjamin Peterson committed
18
    BM_compatible = True
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
    PATTERN = """
    power< base=any+ trailer< '.' attr='next' > trailer< '(' ')' > >
    |
    power< head=any+ trailer< '.' attr='next' > not trailer< '(' ')' > >
    |
    classdef< 'class' any+ ':'
              suite< any*
                     funcdef< 'def'
                              name='next'
                              parameters< '(' NAME ')' > any+ >
                     any* > >
    |
    global=global_stmt< 'global' any* 'next' any* >
    """

    order = "pre" # Pre-order tree traversal

    def start_tree(self, tree, filename):
        super(FixNext, self).start_tree(tree, filename)
Benjamin Peterson's avatar
Benjamin Peterson committed
38 39 40 41 42 43 44

        n = find_binding('next', tree)
        if n:
            self.warning(n, bind_warning)
            self.shadowed_next = True
        else:
            self.shadowed_next = False
45 46 47 48 49 50 51 52 53

    def transform(self, node, results):
        assert results

        base = results.get("base")
        attr = results.get("attr")
        name = results.get("name")

        if base:
54
            if self.shadowed_next:
55
                attr.replace(Name("__next__", prefix=attr.prefix))
56 57
            else:
                base = [n.clone() for n in base]
58 59
                base[0].prefix = ""
                node.replace(Call(Name("next", prefix=node.prefix), base))
60
        elif name:
61
            n = Name("__next__", prefix=name.prefix)
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
            name.replace(n)
        elif attr:
            # We don't do this transformation if we're assigning to "x.next".
            # Unfortunately, it doesn't seem possible to do this in PATTERN,
            #  so it's being done here.
            if is_assign_target(node):
                head = results["head"]
                if "".join([str(n) for n in head]).strip() == '__builtin__':
                    self.warning(node, bind_warning)
                return
            attr.replace(Name("__next__"))
        elif "global" in results:
            self.warning(node, bind_warning)
            self.shadowed_next = True


### The following functions help test if node is part of an assignment
###  target.

def is_assign_target(node):
    assign = find_assign(node)
    if assign is None:
        return False

    for child in assign.children:
        if child.type == token.EQUAL:
            return False
        elif is_subtree(child, node):
            return True
    return False

def find_assign(node):
    if node.type == syms.expr_stmt:
        return node
    if node.type == syms.simple_stmt or node.parent is None:
        return None
    return find_assign(node.parent)

def is_subtree(root, node):
    if root == node:
        return True
103
    return any(is_subtree(c, node) for c in root.children)