]> git.proxmox.com Git - mirror_edk2.git/blobdiff - AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/fix_basestring.py
edk2: Remove AppPkg, StdLib, StdLibPrivateInternalFiles
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Lib / lib2to3 / fixes / fix_basestring.py
diff --git a/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/fix_basestring.py b/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/fix_basestring.py
deleted file mode 100644 (file)
index 54f06e4..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-"""Fixer for basestring -> str."""\r
-# Author: Christian Heimes\r
-\r
-# Local imports\r
-from .. import fixer_base\r
-from ..fixer_util import Name\r
-\r
-class FixBasestring(fixer_base.BaseFix):\r
-    BM_compatible = True\r
-\r
-    PATTERN = "'basestring'"\r
-\r
-    def transform(self, node, results):\r
-        return Name(u"str", prefix=node.prefix)\r