Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.9/dist-packages/numpy/compat/__init__.py: 100%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

7 statements  

1""" 

2Compatibility module. 

3 

4This module contains duplicated code from Python itself or 3rd party 

5extensions, which may be included for the following reasons: 

6 

7 * compatibility 

8 * we may only need a small subset of the copied library/module 

9 

10""" 

11 

12from .._utils import _inspect 

13from .._utils._inspect import getargspec, formatargspec 

14from . import py3k 

15from .py3k import * 

16 

17__all__ = [] 

18__all__.extend(_inspect.__all__) 

19__all__.extend(py3k.__all__)