Chris@87: """ Chris@87: Compatibility module. Chris@87: Chris@87: This module contains duplicated code from Python itself or 3rd party Chris@87: extensions, which may be included for the following reasons: Chris@87: Chris@87: * compatibility Chris@87: * we may only need a small subset of the copied library/module Chris@87: Chris@87: """ Chris@87: from __future__ import division, absolute_import, print_function Chris@87: Chris@87: from . import _inspect Chris@87: from . import py3k Chris@87: from ._inspect import getargspec, formatargspec Chris@87: from .py3k import * Chris@87: Chris@87: __all__ = [] Chris@87: __all__.extend(_inspect.__all__) Chris@87: __all__.extend(py3k.__all__)