symbian-qemu-0.9.1-12/python-win32-2.6.1/lib/lib2to3/fixes/fix_imports2.py
changeset 1 2fb8b9db1c86
equal deleted inserted replaced
0:ffa851df0825 1:2fb8b9db1c86
       
     1 """Fix incompatible imports and module references that must be fixed after
       
     2 fix_imports."""
       
     3 from . import fix_imports
       
     4 
       
     5 
       
     6 MAPPING = {
       
     7             'whichdb': 'dbm',
       
     8             'anydbm': 'dbm',
       
     9           }
       
    10 
       
    11 
       
    12 class FixImports2(fix_imports.FixImports):
       
    13 
       
    14     order = "post"
       
    15 
       
    16     mapping = MAPPING