diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-09-20 00:10:42 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-09-20 00:10:42 +0000 |
commit | 1f0508e85e320c486e88bbca329a70bcd467cdc1 (patch) | |
tree | b9aab0466ca44945ef186d677df2cce855cf447d | |
parent | b8d9549bdd7d8492108d655a17513a03600a80b0 (diff) | |
download | numpy-1f0508e85e320c486e88bbca329a70bcd467cdc1.tar.gz |
Remove UserArray.py and dft sub-package.
-rw-r--r-- | numpy/dft/__init__.py | 4 | ||||
-rw-r--r-- | numpy/lib/UserArray.py | 3 |
2 files changed, 0 insertions, 7 deletions
diff --git a/numpy/dft/__init__.py b/numpy/dft/__init__.py deleted file mode 100644 index 7c7ea4d72..000000000 --- a/numpy/dft/__init__.py +++ /dev/null @@ -1,4 +0,0 @@ -import warnings -warnings.warn("The dft subpackage will be removed by 1.0 final -- it is now called fft") -from numpy.fft import * -del warnings diff --git a/numpy/lib/UserArray.py b/numpy/lib/UserArray.py deleted file mode 100644 index 88da4952c..000000000 --- a/numpy/lib/UserArray.py +++ /dev/null @@ -1,3 +0,0 @@ -from user_array import container as UserArray -import warnings -warnings.warn('UserArray.UserArray will be removed by 1.0final use user_array.container') |