├── .flake8 ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── numpy-stubs ├── __init__.pyi ├── core │ ├── __init__.pyi │ └── _internal.pyi └── typing.pyi ├── runtests.py ├── scripts └── find_ufuncs.py ├── setup.cfg ├── setup.py ├── test-requirements.txt └── tests ├── README.md ├── fail ├── array_like.py ├── fromnumeric.py ├── ndarray.py ├── numerictypes.py ├── scalars.py ├── simple.py ├── ufuncs.py └── warnings_and_errors.py ├── pass ├── array_like.py ├── fromnumeric.py ├── ndarray_conversion.py ├── ndarray_shape_manipulation.py ├── numerictypes.py ├── scalars.py ├── simple.py ├── simple_py3.py ├── ufuncs.py └── warnings_and_errors.py ├── reveal ├── constants.py ├── fromnumeric.py ├── ndarray_conversion.py ├── ndarray_shape_manipulation.py ├── numerictypes.py ├── scalars.py └── warnings_and_errors.py └── test_stubs.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/README.md -------------------------------------------------------------------------------- /numpy-stubs/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/numpy-stubs/__init__.pyi -------------------------------------------------------------------------------- /numpy-stubs/core/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /numpy-stubs/core/_internal.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/numpy-stubs/core/_internal.pyi -------------------------------------------------------------------------------- /numpy-stubs/typing.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/numpy-stubs/typing.pyi -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/runtests.py -------------------------------------------------------------------------------- /scripts/find_ufuncs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/scripts/find_ufuncs.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/fail/array_like.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/tests/fail/array_like.py -------------------------------------------------------------------------------- /tests/fail/fromnumeric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/tests/fail/fromnumeric.py -------------------------------------------------------------------------------- /tests/fail/ndarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/tests/fail/ndarray.py -------------------------------------------------------------------------------- /tests/fail/numerictypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/tests/fail/numerictypes.py -------------------------------------------------------------------------------- /tests/fail/scalars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/tests/fail/scalars.py -------------------------------------------------------------------------------- /tests/fail/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/tests/fail/simple.py -------------------------------------------------------------------------------- /tests/fail/ufuncs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/tests/fail/ufuncs.py -------------------------------------------------------------------------------- /tests/fail/warnings_and_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/tests/fail/warnings_and_errors.py -------------------------------------------------------------------------------- /tests/pass/array_like.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/tests/pass/array_like.py -------------------------------------------------------------------------------- /tests/pass/fromnumeric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/tests/pass/fromnumeric.py -------------------------------------------------------------------------------- /tests/pass/ndarray_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/tests/pass/ndarray_conversion.py -------------------------------------------------------------------------------- /tests/pass/ndarray_shape_manipulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/tests/pass/ndarray_shape_manipulation.py -------------------------------------------------------------------------------- /tests/pass/numerictypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/tests/pass/numerictypes.py -------------------------------------------------------------------------------- /tests/pass/scalars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/tests/pass/scalars.py -------------------------------------------------------------------------------- /tests/pass/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/tests/pass/simple.py -------------------------------------------------------------------------------- /tests/pass/simple_py3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/tests/pass/simple_py3.py -------------------------------------------------------------------------------- /tests/pass/ufuncs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/tests/pass/ufuncs.py -------------------------------------------------------------------------------- /tests/pass/warnings_and_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/tests/pass/warnings_and_errors.py -------------------------------------------------------------------------------- /tests/reveal/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/tests/reveal/constants.py -------------------------------------------------------------------------------- /tests/reveal/fromnumeric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/tests/reveal/fromnumeric.py -------------------------------------------------------------------------------- /tests/reveal/ndarray_conversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/tests/reveal/ndarray_conversion.py -------------------------------------------------------------------------------- /tests/reveal/ndarray_shape_manipulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/tests/reveal/ndarray_shape_manipulation.py -------------------------------------------------------------------------------- /tests/reveal/numerictypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/tests/reveal/numerictypes.py -------------------------------------------------------------------------------- /tests/reveal/scalars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/tests/reveal/scalars.py -------------------------------------------------------------------------------- /tests/reveal/warnings_and_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/tests/reveal/warnings_and_errors.py -------------------------------------------------------------------------------- /tests/test_stubs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numpy/numpy-stubs/HEAD/tests/test_stubs.py --------------------------------------------------------------------------------