diff options
author | Sebastian Berg <sebastianb@nvidia.com> | 2022-11-18 15:11:25 +0100 |
---|---|---|
committer | Sebastian Berg <sebastianb@nvidia.com> | 2022-11-24 17:03:42 +0100 |
commit | 7c361420b4f81713f593ebbb5c924121c1f2d19d (patch) | |
tree | 4fa5c173c3e4df5dfdb9b14b9b0988db0bc69e91 /numpy/core/getlimits.py | |
parent | 72af24df557802015820714aaa3d105d53216431 (diff) | |
download | numpy-7c361420b4f81713f593ebbb5c924121c1f2d19d.tar.gz |
MAINT: Move set_module to numpy.core to use without C import
Diffstat (limited to 'numpy/core/getlimits.py')
-rw-r--r-- | numpy/core/getlimits.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/getlimits.py b/numpy/core/getlimits.py index 2c0f462cc..c884e3d70 100644 --- a/numpy/core/getlimits.py +++ b/numpy/core/getlimits.py @@ -5,8 +5,8 @@ __all__ = ['finfo', 'iinfo'] import warnings +from .._utils import set_module from ._machar import MachAr -from .overrides import set_module from . import numeric from . import numerictypes as ntypes from .numeric import array, inf, NaN |