]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/fix_raw_input.py
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Lib / lib2to3 / fixes / fix_raw_input.py
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/fix_raw_input.py b/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/fix_raw_input.py
deleted file mode 100644 (file)
index 7918445..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-"""Fixer that changes raw_input(...) into input(...)."""\r
-# Author: Andre Roberge\r
-\r
-# Local imports\r
-from .. import fixer_base\r
-from ..fixer_util import Name\r
-\r
-class FixRawInput(fixer_base.BaseFix):\r
-\r
-    BM_compatible = True\r
-    PATTERN = """\r
-              power< name='raw_input' trailer< '(' [any] ')' > any* >\r
-              """\r
-\r
-    def transform(self, node, results):\r
-        name = results["name"]\r
-        name.replace(Name(u"input", prefix=name.prefix))\r