mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
remove custom_fixers. it is not needed anymore.
This commit is contained in:
parent
ba4dcaa8dd
commit
15879896fd
@ -1,12 +0,0 @@
|
|||||||
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))
|
|
2
setup.py
2
setup.py
@ -173,7 +173,7 @@ setup(
|
|||||||
'Topic :: Utilities',
|
'Topic :: Utilities',
|
||||||
],
|
],
|
||||||
platforms='any',
|
platforms='any',
|
||||||
packages=find_packages(exclude=['custom_fixers', 'test']),
|
packages=find_packages(exclude=['test']),
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
entry_points={
|
entry_points={
|
||||||
'console_scripts': [
|
'console_scripts': [
|
||||||
|
Loading…
Reference in New Issue
Block a user