diff options
author | Brigitta Sipocz <bsipocz@gmail.com> | 2019-09-18 16:41:45 -0700 |
---|---|---|
committer | Brigitta Sipocz <bsipocz@gmail.com> | 2019-09-18 16:41:45 -0700 |
commit | d53219bad0f8af4b0cc461d165f9d729e44d91dd (patch) | |
tree | 065017ffd866a1e2bb53a540d644c7f08da2a8ba /numpy/testing/utils.py | |
parent | cf70bf20b2e528b2ed74dda2dce7d1d60fa118ea (diff) | |
download | numpy-d53219bad0f8af4b0cc461d165f9d729e44d91dd.tar.gz |
Changing ImportWarning to DeprecationWarning
Diffstat (limited to 'numpy/testing/utils.py')
-rw-r--r-- | numpy/testing/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/testing/utils.py b/numpy/testing/utils.py index 1e7d65b89..21e108e21 100644 --- a/numpy/testing/utils.py +++ b/numpy/testing/utils.py @@ -10,7 +10,7 @@ import warnings # 2018-04-04, numpy 1.15.0 warnings.warn("Importing from numpy.testing.utils is deprecated " "since 1.15.0, import from numpy.testing instead.", - ImportWarning, stacklevel=2) + DeprecationWarning, stacklevel=2) from ._private.utils import * |