You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
320 B
15 lines
320 B
"""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("str", prefix=node.prefix)
|