diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2018-03-29 12:15:31 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-29 12:15:31 -0600 |
commit | a7a18f28f41854c41805303f98cb96b22e066f01 (patch) | |
tree | c9d657eb527741d891407faff66fc24cecdc01a7 /numpy/testing/noseclasses.py | |
parent | bea761424753c0612a65a6a91d44f9a81bdc4c12 (diff) | |
parent | 2589616ca6a9b6270c9621af038d90972154914b (diff) | |
download | numpy-a7a18f28f41854c41805303f98cb96b22e066f01.tar.gz |
Merge pull request #10812 from charris/rearrange-testing-files
MAINT: Rearrange `numpy/testing` files
Diffstat (limited to 'numpy/testing/noseclasses.py')
-rw-r--r-- | numpy/testing/noseclasses.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/numpy/testing/noseclasses.py b/numpy/testing/noseclasses.py index 144c4e7e4..9431fc6f1 100644 --- a/numpy/testing/noseclasses.py +++ b/numpy/testing/noseclasses.py @@ -2,4 +2,10 @@ Back compatibility noseclasses module. It will import the appropriate set of tools """ -from .nose_tools.noseclasses import *
\ No newline at end of file +import warnings + +warnings.warn(ImportWarning, + "Import from numpy.testing, not numpy.testing.noseclasses") + +from ._private.noseclasses import * + |