Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-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""" 

11from . import _inspect 

12from . import py3k 

13from ._inspect import getargspec, formatargspec 

14from .py3k import * 

15 

16__all__ = [] 

17__all__.extend(_inspect.__all__) 

18__all__.extend(py3k.__all__)