diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-04-04 12:31:56 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2018-04-06 20:47:00 -0600 |
commit | cf73c76d3078b30b521f8abd19ae7996987784f7 (patch) | |
tree | e2a891e0900724c16112182d6e859303add33d97 /numpy/testing/utils.py | |
parent | 036151143bff1eebeded5582534e676a192352cd (diff) | |
download | numpy-cf73c76d3078b30b521f8abd19ae7996987784f7.tar.gz |
DEP: Issue deprecation warnings for some imports.
The following modules have been moved or renamed and should not be
imported. This adds shim modules for the old names that issue a
DeprecationWarning on import.
* numpy/core/umath_tests.py
* numpy/testing/decorators.py
* numpy/testing/noseclasses.py
* numpy/testing/nosetester.py
* numpy/testing/utils.py
Closes #10845.
Diffstat (limited to 'numpy/testing/utils.py')
-rw-r--r-- | numpy/testing/utils.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/numpy/testing/utils.py b/numpy/testing/utils.py index 3cd89e639..78cf405cf 100644 --- a/numpy/testing/utils.py +++ b/numpy/testing/utils.py @@ -3,10 +3,14 @@ Back compatibility utils module. It will import the appropriate set of tools """ +from __future__ import division, absolute_import, print_function + import warnings -warnings.warn("Import from numpy.testing, not numpy.testing.utils", - ImportWarning) +# 2018-04-04, numpy 1.15.0 +warnings.warn("Importing from numpy.testing.utils is deprecated, " + "import from numpy.testing instead.", + ImportWarning, stacklevel=2) from ._private.utils import * |