Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: aa7e51f006c32bbf5d444e959085d080fbbee05b authored by Benjamin Peterson on 09 January 2010, 16:34:06 UTC
bump version to 2.7a2
Tip revision: aa7e51f
fix_imports2.py
"""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
back to top