__init__.py 498 B

1234567891011121314151617181920
  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 __future__ import division, absolute_import, print_function
  9. from . import _inspect
  10. from . import py3k
  11. from ._inspect import getargspec, formatargspec
  12. from .py3k import *
  13. __all__ = []
  14. __all__.extend(_inspect.__all__)
  15. __all__.extend(py3k.__all__)