__init__.py 432 B

123456789101112131415161718
  1. """
  2. Compatibility module.
  3. This module contains duplicated code from Python itself or 3rd party
  4. extensions, which may be included for the following reasons:
  5. * compatibility
  6. * we may only need a small subset of the copied library/module
  7. """
  8. from . import _inspect
  9. from . import py3k
  10. from ._inspect import getargspec, formatargspec
  11. from .py3k import *
  12. __all__ = []
  13. __all__.extend(_inspect.__all__)
  14. __all__.extend(py3k.__all__)