blob: bf78be500503ee8eebe9b1a6339df2d9e89c51f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
"""
Back compatibility decorators module. It will import the appropriate
set of tools
"""
from __future__ import division, absolute_import, print_function
import warnings
# 2018-04-04, numpy 1.15.0
warnings.warn("Importing from numpy.testing.decorators is deprecated "
"since numpy 1.15.0, import from numpy.testing instead.",
DeprecationWarning, stacklevel=2)
from ._private.decorators import *
|