mirror of
https://github.com/python/cpython.git
synced 2025-11-04 23:51:47 +00:00
7 lines
127 B
Python
7 lines
127 B
Python
|
|
from lib2to3.fixer_base import BaseFix
|
||
|
|
|
||
|
|
class FixPreorder(BaseFix):
|
||
|
|
order = "pre"
|
||
|
|
|
||
|
|
def match(self, node): return False
|