summaryrefslogtreecommitdiff
path: root/numpy/testing/decorators.py
blob: 68c1554b5490325a584ab7725bf056dabc5c1824 (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, "
              "import from numpy.testing instead.",
              DeprecationWarning, stacklevel=2)

from ._private.decorators import *