diff options
| author | Dan Schult <dschult@colgate.edu> | 2022-07-27 09:05:58 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-27 15:05:58 +0200 |
| commit | 6e1557900da3c2cc8455449e7e76b07f7c36b32a (patch) | |
| tree | 34e42004c1a8b74dc2f444b13e783ba758164019 /numpy/testing | |
| parent | 45bc13e6d922690eea43b9d807d476e0f243f836 (diff) | |
| download | numpy-6e1557900da3c2cc8455449e7e76b07f7c36b32a.tar.gz | |
ENH: allow importlib.LazyLoader to work with numpy and add test of this (#22045)
Diffstat (limited to 'numpy/testing')
| -rw-r--r-- | numpy/testing/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/testing/__init__.py b/numpy/testing/__init__.py index 6e06c5b49..087527e43 100644 --- a/numpy/testing/__init__.py +++ b/numpy/testing/__init__.py @@ -7,6 +7,7 @@ away. """ from unittest import TestCase +from . import _private from ._private.utils import * from ._private.utils import (_assert_valid_refcount, _gen_alignment_data) from ._private import extbuild, decorators as dec |
