diff options
author | Allan Haldane <allan.haldane@gmail.com> | 2018-10-09 23:46:11 -0400 |
---|---|---|
committer | Allan Haldane <allan.haldane@gmail.com> | 2018-10-09 23:46:11 -0400 |
commit | 699dfeeec3731555a90da2060267f9ee72e9887e (patch) | |
tree | 9445046a92e09e0f82d0a0a6e5603b336d051fba /numpy/__init__.py | |
parent | 78e105182759b582818cb0f661052e9d812c8478 (diff) | |
download | numpy-699dfeeec3731555a90da2060267f9ee72e9887e.tar.gz |
MAINT: cleanup getlimit global vars
Diffstat (limited to 'numpy/__init__.py')
-rw-r--r-- | numpy/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/__init__.py b/numpy/__init__.py index 120a7b4c4..ba88c733f 100644 --- a/numpy/__init__.py +++ b/numpy/__init__.py @@ -164,7 +164,7 @@ else: from .core import round, abs, max, min # now that numpy modules are imported, can initialize limits - core.getlimits._init_getlimits() + core.getlimits._register_known_types() __all__.extend(['__version__', 'show_config']) __all__.extend(core.__all__) |