Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.9/dist-packages/numpy/compat/__init__.py: 100%
7 statements
« prev ^ index » next coverage.py v7.4.4, created at 2024-04-03 06:39 +0000
« prev ^ index » next coverage.py v7.4.4, created at 2024-04-03 06:39 +0000
1"""
2Compatibility module.
4This module contains duplicated code from Python itself or 3rd party
5extensions, which may be included for the following reasons:
7 * compatibility
8 * we may only need a small subset of the copied library/module
10"""
12from .._utils import _inspect
13from .._utils._inspect import getargspec, formatargspec
14from . import py3k
15from .py3k import *
17__all__ = []
18__all__.extend(_inspect.__all__)
19__all__.extend(py3k.__all__)