Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/numpy/compat/__init__.py: 100%
7 statements
« prev ^ index » next coverage.py v7.2.7, created at 2023-06-07 07:03 +0000
« prev ^ index » next coverage.py v7.2.7, created at 2023-06-07 07:03 +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"""
11from . import _inspect
12from . import py3k
13from ._inspect import getargspec, formatargspec
14from .py3k import *
16__all__ = []
17__all__.extend(_inspect.__all__)
18__all__.extend(py3k.__all__)