logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

fix_imports2.py (289B)


  1. """Fix incompatible imports and module references that must be fixed after
  2. fix_imports."""
  3. from . import fix_imports
  4. MAPPING = {
  5. 'whichdb': 'dbm',
  6. 'anydbm': 'dbm',
  7. }
  8. class FixImports2(fix_imports.FixImports):
  9. run_order = 7
  10. mapping = MAPPING