diff options
Diffstat (limited to 'lib/python2.7/lib2to3/fixes/fix_imports2.py')
-rw-r--r-- | lib/python2.7/lib2to3/fixes/fix_imports2.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/python2.7/lib2to3/fixes/fix_imports2.py b/lib/python2.7/lib2to3/fixes/fix_imports2.py new file mode 100644 index 0000000..9a33c67 --- /dev/null +++ b/lib/python2.7/lib2to3/fixes/fix_imports2.py @@ -0,0 +1,16 @@ +"""Fix incompatible imports and module references that must be fixed after +fix_imports.""" +from . import fix_imports + + +MAPPING = { + 'whichdb': 'dbm', + 'anydbm': 'dbm', + } + + +class FixImports2(fix_imports.FixImports): + + run_order = 7 + + mapping = MAPPING |