summaryrefslogtreecommitdiffstats
path: root/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/fix_basestring.py
blob: 54f06e40b986f2d0400cff3ecf7c8de354d9c954 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""Fixer for basestring -> str."""
# Author: Christian Heimes

# Local imports
from .. import fixer_base
from ..fixer_util import Name

class FixBasestring(fixer_base.BaseFix):
    BM_compatible = True

    PATTERN = "'basestring'"

    def transform(self, node, results):
        return Name(u"str", prefix=node.prefix)