mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
13 lines
357 B
Python
13 lines
357 B
Python
from lib2to3.fixer_base import BaseFix
|
|
from lib2to3.fixer_util import Name
|
|
|
|
class FixAltUnicode(BaseFix):
|
|
PATTERN = """
|
|
func=funcdef< 'def' name='__unicode__'
|
|
parameters< '(' NAME ')' > any+ >
|
|
"""
|
|
|
|
def transform(self, node, results):
|
|
name = results['name']
|
|
name.replace(Name('__str__', prefix=name.prefix))
|