home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Maximum CD 2011 July
/
maximum-cd-2011-07.iso
/
DiscContents
/
LibO_3.3.2_Win_x86_install_multi.exe
/
libreoffice1.cab
/
fix_imports2.py
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Python Source
|
2011-03-15
|
290 b
|
17 lines
"""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):
order = "post"
mapping = MAPPING