diff options
author | Matti Picus <matti.picus@gmail.com> | 2022-11-29 23:33:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-29 23:33:27 +0200 |
commit | b0b7a066c393a1d7cc69e9a6db7c7c7a3602b293 (patch) | |
tree | dc4f958c35884078fdfdc3b58c1627417c7c13b1 /numpy/lib/polynomial.py | |
parent | 2cf8c40727b08c029cdaf7fce803d031a60499a2 (diff) | |
parent | cbecc96b62477890174ae91433c4c9c28cc7765b (diff) | |
download | numpy-b0b7a066c393a1d7cc69e9a6db7c7c7a3602b293.tar.gz |
Merge pull request #22619 from seberg/move-set_module
MAINT: Move set_module from numpy.core to numpy._utils
Diffstat (limited to 'numpy/lib/polynomial.py')
-rw-r--r-- | numpy/lib/polynomial.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/lib/polynomial.py b/numpy/lib/polynomial.py index 6aa708861..0f7ab0334 100644 --- a/numpy/lib/polynomial.py +++ b/numpy/lib/polynomial.py @@ -9,12 +9,13 @@ __all__ = ['poly', 'roots', 'polyint', 'polyder', 'polyadd', import functools import re import warnings + +from .._utils import set_module import numpy.core.numeric as NX from numpy.core import (isscalar, abs, finfo, atleast_1d, hstack, dot, array, ones) from numpy.core import overrides -from numpy.core.overrides import set_module from numpy.lib.twodim_base import diag, vander from numpy.lib.function_base import trim_zeros from numpy.lib.type_check import iscomplex, real, imag, mintypecode |