diff options
Diffstat (limited to 'numpy/oldnumeric')
| -rw-r--r-- | numpy/oldnumeric/__init__.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/numpy/oldnumeric/__init__.py b/numpy/oldnumeric/__init__.py index cf34b8300..86cdf55f7 100644 --- a/numpy/oldnumeric/__init__.py +++ b/numpy/oldnumeric/__init__.py @@ -3,8 +3,14 @@ """ from __future__ import division, absolute_import, print_function +import warnings + from numpy import * +_msg = "The oldnumeric module will be dropped in Numpy 1.9" +warnings.warn(_msg, ModuleDeprecationWarning) + + def _move_axis_to_0(a, axis): if axis == 0: return a |
