diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-08-05 20:36:39 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-08-05 20:36:39 +0000 |
commit | d76c27de89576f888618a20c54216991f9bedaad (patch) | |
tree | 694ba5d9692e6b2109741cebbe8e7b790a87cce4 /numpy/numarray/alter_code2.py | |
parent | db349674856abc7b2652546e937c85dbbbebbf9c (diff) | |
download | numpy-d76c27de89576f888618a20c54216991f9bedaad.tar.gz |
Minor changes to alter_code scripts
Diffstat (limited to 'numpy/numarray/alter_code2.py')
-rw-r--r-- | numpy/numarray/alter_code2.py | 21 |
1 files changed, 4 insertions, 17 deletions
diff --git a/numpy/numarray/alter_code2.py b/numpy/numarray/alter_code2.py index c1c8ae072..8e30ffb65 100644 --- a/numpy/numarray/alter_code2.py +++ b/numpy/numarray/alter_code2.py @@ -1,29 +1,16 @@ """ -This module converts code written for numpy.oldnumeric to work +This module converts code written for numpy.numarray to work with numpy -Makes the following changes: - * Converts typecharacters '1swu' to 'bhHI' respectively - when used as typecodes - * Changes import statements - * Change typecode= to dtype= - * 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 oldnumeric.linear_algebra, - oldnumeric.random_array, and oldnumeric.fft - """ #__all__ = ['fromfile', 'fromstr'] __all__ = [] import warnings -warnings.warn("convetnumericB is not finished yet.") - +warnings.warn("numpy.numarray.alter_code2 is not ready yet.") import sys + + import os import re import glob |