"""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 from .. import fixer_base from ..fixer_util import Name, Call, find_binding bind_warning = "Calls to builtin next() possibly shadowed by global binding" class FixNext(fixer_base.BaseFix): BM_compatible = True 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) n = find_binding(u'next', tree) if n: self.warning(n, bind_warning) self.shadowed_next = True else: self.shadowed_next = False def transform(self, node, results): assert results base = results.get("base") attr = results.get("attr") name = results.get("name") if base: if self.shadowed_next: attr.replace(Name(u"__next__", prefix=attr.prefix)) else: base = [n.clone() for n in base] base[0].prefix = u"" node.replace(Call(Name(u"next", prefix=node.prefix), base)) elif name: n = Name(u"__next__", prefix=name.prefix) 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() == u'__builtin__': self.warning(node, bind_warning) return attr.replace(Name(u"__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 return any(is_subtree(c, node) for c in root.children)
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
__init__.py | File | 47 B | 0644 |
|
__init__.pyc | File | 146 B | 0644 |
|
__init__.pyo | File | 146 B | 0644 |
|
fix_apply.py | File | 2.38 KB | 0644 |
|
fix_apply.pyc | File | 2.07 KB | 0644 |
|
fix_apply.pyo | File | 2.04 KB | 0644 |
|
fix_asserts.py | File | 984 B | 0644 |
|
fix_asserts.pyc | File | 1.56 KB | 0644 |
|
fix_asserts.pyo | File | 1.56 KB | 0644 |
|
fix_basestring.py | File | 321 B | 0644 |
|
fix_basestring.pyc | File | 846 B | 0644 |
|
fix_basestring.pyo | File | 846 B | 0644 |
|
fix_buffer.py | File | 591 B | 0644 |
|
fix_buffer.pyc | File | 1003 B | 0644 |
|
fix_buffer.pyo | File | 1003 B | 0644 |
|
fix_dict.py | File | 3.73 KB | 0644 |
|
fix_dict.pyc | File | 3.73 KB | 0644 |
|
fix_dict.pyo | File | 3.61 KB | 0644 |
|
fix_except.py | File | 3.27 KB | 0644 |
|
fix_except.pyc | File | 2.99 KB | 0644 |
|
fix_except.pyo | File | 2.99 KB | 0644 |
|
fix_exec.py | File | 1002 B | 0644 |
|
fix_exec.pyc | File | 1.44 KB | 0644 |
|
fix_exec.pyo | File | 1.4 KB | 0644 |
|
fix_execfile.py | File | 2.01 KB | 0644 |
|
fix_execfile.pyc | File | 2.1 KB | 0644 |
|
fix_execfile.pyo | File | 2.06 KB | 0644 |
|
fix_exitfunc.py | File | 2.44 KB | 0644 |
|
fix_exitfunc.pyc | File | 2.76 KB | 0644 |
|
fix_exitfunc.pyo | File | 2.76 KB | 0644 |
|
fix_filter.py | File | 2.06 KB | 0644 |
|
fix_filter.pyc | File | 2.25 KB | 0644 |
|
fix_filter.pyo | File | 2.25 KB | 0644 |
|
fix_funcattrs.py | File | 645 B | 0644 |
|
fix_funcattrs.pyc | File | 1.14 KB | 0644 |
|
fix_funcattrs.pyo | File | 1.14 KB | 0644 |
|
fix_future.py | File | 547 B | 0644 |
|
fix_future.pyc | File | 972 B | 0644 |
|
fix_future.pyo | File | 972 B | 0644 |
|
fix_getcwdu.py | File | 452 B | 0644 |
|
fix_getcwdu.pyc | File | 979 B | 0644 |
|
fix_getcwdu.pyo | File | 979 B | 0644 |
|
fix_has_key.py | File | 3.15 KB | 0644 |
|
fix_has_key.pyc | File | 3.16 KB | 0644 |
|
fix_has_key.pyo | File | 3.13 KB | 0644 |
|
fix_idioms.py | File | 4.77 KB | 0644 |
|
fix_idioms.pyc | File | 4.52 KB | 0644 |
|
fix_idioms.pyo | File | 4.42 KB | 0644 |
|
fix_import.py | File | 3.18 KB | 0644 |
|
fix_import.pyc | File | 3.25 KB | 0644 |
|
fix_import.pyo | File | 3.25 KB | 0644 |
|
fix_imports.py | File | 5.56 KB | 0644 |
|
fix_imports.pyc | File | 5.38 KB | 0644 |
|
fix_imports.pyo | File | 5.38 KB | 0644 |
|
fix_imports2.py | File | 289 B | 0644 |
|
fix_imports2.pyc | File | 660 B | 0644 |
|
fix_imports2.pyo | File | 660 B | 0644 |
|
fix_input.py | File | 710 B | 0644 |
|
fix_input.pyc | File | 1.16 KB | 0644 |
|
fix_input.pyo | File | 1.16 KB | 0644 |
|
fix_intern.py | File | 1.82 KB | 0644 |
|
fix_intern.pyc | File | 1.79 KB | 0644 |
|
fix_intern.pyo | File | 1.79 KB | 0644 |
|
fix_isinstance.py | File | 1.57 KB | 0644 |
|
fix_isinstance.pyc | File | 1.85 KB | 0644 |
|
fix_isinstance.pyo | File | 1.85 KB | 0644 |
|
fix_itertools.py | File | 1.51 KB | 0644 |
|
fix_itertools.pyc | File | 1.8 KB | 0644 |
|
fix_itertools.pyo | File | 1.8 KB | 0644 |
|
fix_itertools_imports.py | File | 2.04 KB | 0644 |
|
fix_itertools_imports.pyc | File | 2.02 KB | 0644 |
|
fix_itertools_imports.pyo | File | 1.98 KB | 0644 |
|
fix_long.py | File | 477 B | 0644 |
|
fix_long.pyc | File | 894 B | 0644 |
|
fix_long.pyo | File | 894 B | 0644 |
|
fix_map.py | File | 2.99 KB | 0644 |
|
fix_map.pyc | File | 3.02 KB | 0644 |
|
fix_map.pyo | File | 3.02 KB | 0644 |
|
fix_metaclass.py | File | 8.02 KB | 0644 |
|
fix_metaclass.pyc | File | 6.56 KB | 0644 |
|
fix_metaclass.pyo | File | 6.52 KB | 0644 |
|
fix_methodattrs.py | File | 615 B | 0644 |
|
fix_methodattrs.pyc | File | 1.16 KB | 0644 |
|
fix_methodattrs.pyo | File | 1.16 KB | 0644 |
|
fix_ne.py | File | 573 B | 0644 |
|
fix_ne.pyc | File | 1.03 KB | 0644 |
|
fix_ne.pyo | File | 1.03 KB | 0644 |
|
fix_next.py | File | 3.11 KB | 0644 |
|
fix_next.pyc | File | 3.57 KB | 0644 |
|
fix_next.pyo | File | 3.54 KB | 0644 |
|
fix_nonzero.py | File | 598 B | 0644 |
|
fix_nonzero.pyc | File | 1.11 KB | 0644 |
|
fix_nonzero.pyo | File | 1.11 KB | 0644 |
|
fix_numliterals.py | File | 773 B | 0644 |
|
fix_numliterals.pyc | File | 1.29 KB | 0644 |
|
fix_numliterals.pyo | File | 1.29 KB | 0644 |
|
fix_operator.py | File | 3.39 KB | 0644 |
|
fix_operator.pyc | File | 5.22 KB | 0644 |
|
fix_operator.pyo | File | 5.22 KB | 0644 |
|
fix_paren.py | File | 1.2 KB | 0644 |
|
fix_paren.pyc | File | 1.56 KB | 0644 |
|
fix_paren.pyo | File | 1.56 KB | 0644 |
|
fix_print.py | File | 2.8 KB | 0644 |
|
fix_print.pyc | File | 2.73 KB | 0644 |
|
fix_print.pyo | File | 2.63 KB | 0644 |
|
fix_raise.py | File | 2.87 KB | 0644 |
|
fix_raise.pyc | File | 2.49 KB | 0644 |
|
fix_raise.pyo | File | 2.49 KB | 0644 |
|
fix_raw_input.py | File | 455 B | 0644 |
|
fix_raw_input.pyc | File | 989 B | 0644 |
|
fix_raw_input.pyo | File | 989 B | 0644 |
|
fix_reduce.py | File | 839 B | 0644 |
|
fix_reduce.pyc | File | 1.28 KB | 0644 |
|
fix_reduce.pyo | File | 1.28 KB | 0644 |
|
fix_renames.py | File | 2.17 KB | 0644 |
|
fix_renames.pyc | File | 2.5 KB | 0644 |
|
fix_renames.pyo | File | 2.5 KB | 0644 |
|
fix_repr.py | File | 614 B | 0644 |
|
fix_repr.pyc | File | 1.04 KB | 0644 |
|
fix_repr.pyo | File | 1.04 KB | 0644 |
|
fix_set_literal.py | File | 1.66 KB | 0644 |
|
fix_set_literal.pyc | File | 2.01 KB | 0644 |
|
fix_set_literal.pyo | File | 2.01 KB | 0644 |
|
fix_standarderror.py | File | 450 B | 0644 |
|
fix_standarderror.pyc | File | 906 B | 0644 |
|
fix_standarderror.pyo | File | 906 B | 0644 |
|
fix_sys_exc.py | File | 1.01 KB | 0644 |
|
fix_sys_exc.pyc | File | 1.73 KB | 0644 |
|
fix_sys_exc.pyo | File | 1.73 KB | 0644 |
|
fix_throw.py | File | 1.55 KB | 0644 |
|
fix_throw.pyc | File | 2 KB | 0644 |
|
fix_throw.pyo | File | 2 KB | 0644 |
|
fix_tuple_params.py | File | 5.45 KB | 0644 |
|
fix_tuple_params.pyc | File | 5.46 KB | 0644 |
|
fix_tuple_params.pyo | File | 5.46 KB | 0644 |
|
fix_types.py | File | 1.77 KB | 0644 |
|
fix_types.pyc | File | 2.2 KB | 0644 |
|
fix_types.pyo | File | 2.2 KB | 0644 |
|
fix_unicode.py | File | 1.24 KB | 0644 |
|
fix_unicode.pyc | File | 1.74 KB | 0644 |
|
fix_unicode.pyo | File | 1.74 KB | 0644 |
|
fix_urllib.py | File | 8.19 KB | 0644 |
|
fix_urllib.pyc | File | 7.11 KB | 0644 |
|
fix_urllib.pyo | File | 7.11 KB | 0644 |
|
fix_ws_comma.py | File | 1.07 KB | 0644 |
|
fix_ws_comma.pyc | File | 1.4 KB | 0644 |
|
fix_ws_comma.pyo | File | 1.4 KB | 0644 |
|
fix_xrange.py | File | 2.64 KB | 0644 |
|
fix_xrange.pyc | File | 3.12 KB | 0644 |
|
fix_xrange.pyo | File | 3.12 KB | 0644 |
|
fix_xreadlines.py | File | 690 B | 0644 |
|
fix_xreadlines.pyc | File | 1.18 KB | 0644 |
|
fix_xreadlines.pyo | File | 1.18 KB | 0644 |
|
fix_zip.py | File | 904 B | 0644 |
|
fix_zip.pyc | File | 1.37 KB | 0644 |
|
fix_zip.pyo | File | 1.37 KB | 0644 |
|