]> git.proxmox.com Git - mirror_edk2.git/blob - AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/data/fixers/myfixes/fix_preorder.py
EmbeddedPkg: Extend NvVarStoreFormattedLib LIBRARY_CLASS
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Lib / lib2to3 / tests / data / fixers / myfixes / fix_preorder.py
1 from lib2to3.fixer_base import BaseFix
2
3 class FixPreorder(BaseFix):
4 order = "pre"
5
6 def match(self, node): return False