diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-08-05 08:59:42 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-08-05 08:59:42 +0000 |
commit | e292dc4b11eed3e5f5e3609f0fe16dd8709275db (patch) | |
tree | 5eaa9aba9a7053b844c35523ddd1a4cc66e10574 /numpy/lib/convertnumericB.py | |
parent | 1a83cc8b5cfc71b5a7f01a5dcefcd4de4e306cfd (diff) | |
download | numpy-e292dc4b11eed3e5f5e3609f0fe16dd8709275db.tar.gz |
Fix convertnumericA.py to fix transition from 'b' to 'B'
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 |