From 296443137f4288cb030e92859ccfbe3204bc1088 Mon Sep 17 00:00:00 2001 From: rahulp13 Date: Tue, 17 Mar 2020 14:55:41 +0530 Subject: initial commit --- lib/python2.7/lib2to3/fixes/fix_imports2.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 lib/python2.7/lib2to3/fixes/fix_imports2.py (limited to 'lib/python2.7/lib2to3/fixes/fix_imports2.py') 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 -- cgit