blob: 28fbd44fb756e151453c0644954e011ff58b99bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
"""distutils2.converter.refactor
"""
try:
from lib2to3.refactor import RefactoringTool
_LIB2TO3 = True
except ImportError:
# we need 2.6 at least to run this
_LIB2TO3 = False
_DISTUTILS_FIXERS = ['distutils2.converter.fixers.fix_imports',
'distutils2.converter.fixers.fix_setup_options']
|