Coverage for /home/martinb/.local/share/virtualenvs/camcops/lib/python3.6/site-packages/numpy/compat/__init__.py : 100%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
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__)