mirror of
https://github.com/python/cpython.git
synced 2025-12-08 06:10:17 +00:00
* Move Lib/lib2to3/tests/ to Lib/test/test_lib2to3/. * Remove Lib/test/test_lib2to3.py. * Update imports. * all_project_files(): use different paths and sort files to make the tests more reproducible. * Update references to tests.
13 lines
347 B
Python
13 lines
347 B
Python
from lib2to3.fixer_base import BaseFix
|
|
from lib2to3.fixer_util import Name
|
|
|
|
class FixParrot(BaseFix):
|
|
"""
|
|
Change functions named 'parrot' to 'cheese'.
|
|
"""
|
|
|
|
PATTERN = """funcdef < 'def' name='parrot' any* >"""
|
|
|
|
def transform(self, node, results):
|
|
name = results["name"]
|
|
name.replace(Name("cheese", name.prefix))
|