blob: dde62e82584a931fcd3217c159e63bafa66e2acb (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
"""
Back compatibility noseclasses module. It will import the appropriate
set of tools
"""
import warnings
warnings.warn("Import from numpy.testing, not numpy.testing.noseclasses",
ImportWarning)
from ._private.noseclasses import *
|