summaryrefslogtreecommitdiffstats
path: root/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/data/fixers/myfixes/fix_preorder.py
blob: 198c41f48bd21692ab43b0b35fa39f74d07a9ab9 (plain)
1
2
3
4
5
6
from lib2to3.fixer_base import BaseFix

class FixPreorder(BaseFix):
    order = "pre"

    def match(self, node): return False