diff options
Diffstat (limited to 'numpy/lib/convertnumericB.py')
-rw-r--r-- | numpy/lib/convertnumericB.py | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/numpy/lib/convertnumericB.py b/numpy/lib/convertnumericB.py index 36bdd8572..c1c8ae072 100644 --- a/numpy/lib/convertnumericB.py +++ b/numpy/lib/convertnumericB.py @@ -3,19 +3,25 @@ This module converts code written for numpy.oldnumeric to work with numpy Makes the following changes: - * Converts typecharacters + * Converts typecharacters '1swu' to 'bhHI' respectively + when used as typecodes * Changes import statements * Change typecode= to dtype= - * Eliminates savespace=xxx + * Eliminates savespace=xxx keyword arguments + * Removes it when keyword is not given as well * replaces matrixmultiply with dot * converts functions that don't give axis= keyword that have changed * converts functions that don't give typecode= keyword that have changed * converts use of capitalized type-names - - * converts old function names in linalg.old, random.old, dft.old + * converts old function names in oldnumeric.linear_algebra, + oldnumeric.random_array, and oldnumeric.fft """ -__all__ = ['fromfile', 'fromstr'] +#__all__ = ['fromfile', 'fromstr'] +__all__ = [] + +import warnings +warnings.warn("convetnumericB is not finished yet.") import sys import os |