PHP 8.2.30
Preview: fix_next.py Size: 1.20 KB
/opt/alt/python37/lib/python3.7/site-packages/libpasteurize/fixes/fix_next.py

u"""
Fixer for:
it.__next__() -> it.next().
next(it) -> it.next().
"""

from lib2to3.pgen2 import token
from lib2to3.pygram import python_symbols as syms
from lib2to3 import fixer_base
from lib2to3.fixer_util import Name, Call, find_binding, Attr

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


class FixNext(fixer_base.BaseFix):

    PATTERN = u"""
    power< base=any+ trailer< '.' attr='__next__' > any* >
    |
    power< head='next' trailer< '(' arg=any ')' > any* >
    |
    classdef< 'class' base=any+ ':'
              suite< any*
                     funcdef< 'def'
                              attr='__next__'
                              parameters< '(' NAME ')' > any+ >
                     any* > >
    """

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

        base = results.get(u"base")
        attr = results.get(u"attr")
        head = results.get(u"head")
        arg_ = results.get(u"arg")
        if arg_:
            arg = arg_.clone()
            head.replace(Attr(Name(unicode(arg),prefix=head.prefix),
                              Name(u"next")))
            arg_.remove()
        elif base:
            attr.replace(Name(u"next", prefix=attr.prefix))

Directory Contents

Dirs: 1 × Files: 23

Name Size Perms Modified Actions
- drwxr-xr-x 2024-03-03 23:10:26
Edit Download
1.68 KB lrw-r--r-- 2018-10-25 22:21:01
Edit Download
1.24 KB lrw-r--r-- 2018-10-25 22:21:01
Edit Download
676 B lrw-r--r-- 2018-10-25 22:21:01
Edit Download
663 B lrw-r--r-- 2018-10-25 22:21:01
Edit Download
1.54 KB lrw-r--r-- 2018-10-25 22:21:01
Edit Download
904 B lrw-r--r-- 2018-10-25 22:21:01
Edit Download
2.61 KB lrw-r--r-- 2018-10-25 22:21:01
Edit Download
438 B lrw-r--r-- 2018-10-25 22:21:01
Edit Download
1.42 KB lrw-r--r-- 2018-10-25 22:21:01
Edit Download
873 B lrw-r--r-- 2018-10-25 22:21:01
Edit Download
4.83 KB lrw-r--r-- 2018-10-25 22:21:01
Edit Download
8.38 KB lrw-r--r-- 2018-10-25 22:21:01
Edit Download
5.85 KB lrw-r--r-- 2018-10-25 22:21:01
Edit Download
551 B lrw-r--r-- 2018-10-25 22:21:01
Edit Download
3.18 KB lrw-r--r-- 2018-10-25 22:21:01
Edit Download
888 B lrw-r--r-- 2018-10-25 22:21:01
Edit Download
1.20 KB lrw-r--r-- 2018-10-25 22:21:01
Edit Download
401 B lrw-r--r-- 2018-10-25 22:21:01
Edit Download
1.07 KB lrw-r--r-- 2018-10-25 22:21:01
Edit Download
1.20 KB lrw-r--r-- 2018-10-25 22:21:01
Edit Download
835 B lrw-r--r-- 2018-10-25 22:21:01
Edit Download
5.81 KB lrw-r--r-- 2018-10-25 22:21:01
Edit Download
3.63 KB lrw-r--r-- 2018-10-25 22:21:01
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).