Python code coverage for Lib/lib2to3/fixes/fix_imports2.py
# | count | content |
---|---|---|
1 | n/a | """Fix incompatible imports and module references that must be fixed after |
2 | n/a | fix_imports.""" |
3 | n/a | from . import fix_imports |
4 | n/a | |
5 | n/a | |
6 | n/a | MAPPING = { |
7 | n/a | 'whichdb': 'dbm', |
8 | n/a | 'anydbm': 'dbm', |
9 | n/a | } |
10 | n/a | |
11 | n/a | |
12 | n/a | class FixImports2(fix_imports.FixImports): |
13 | n/a | |
14 | n/a | run_order = 7 |
15 | n/a | |
16 | n/a | mapping = MAPPING |