diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-09-28 09:56:41 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-09-28 09:56:41 +0000 |
commit | 7906451af30f3c29250937863b22199cf9f42dfd (patch) | |
tree | 53463f5e33fb7b7c87b7f6b892c4c280fe36d181 /numpy/oldnumeric/misc.py | |
parent | 483ce064ed954b8b9235f69f06bbbcff35d5fe4d (diff) | |
download | numpy-7906451af30f3c29250937863b22199cf9f42dfd.tar.gz |
Fix the fromfunction routine to use float as default. Update oldnumeric and numarray compatibility modules.
Diffstat (limited to 'numpy/oldnumeric/misc.py')
-rw-r--r-- | numpy/oldnumeric/misc.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/oldnumeric/misc.py b/numpy/oldnumeric/misc.py index eb66e5806..74a643c64 100644 --- a/numpy/oldnumeric/misc.py +++ b/numpy/oldnumeric/misc.py @@ -6,7 +6,7 @@ __all__ = ['load', 'sort', 'copy_reg', 'clip', 'Unpickler', 'rank', 'choose', 'swapaxes', 'array_str', 'pi', 'math', 'concatenate', 'putmask', 'put', 'around', 'vdot', 'transpose', 'array2string', 'diagonal', - 'searchsorted', 'fromfunction', 'copy', 'resize', + 'searchsorted', 'copy', 'resize', 'array_repr', 'e', 'StringIO', 'pickle', 'argsort', 'convolve', 'loads', 'cross_correlate', 'Pickler', 'dot', 'outerproduct', 'innerproduct', 'insert'] @@ -21,7 +21,7 @@ from pickle import load, loads from numpy import sort, clip, rank, sign, shape, putmask, allclose, size,\ choose, swapaxes, array_str, array_repr, e, pi, put, \ - fromfunction, resize, around, concatenate, vdot, transpose, \ + resize, around, concatenate, vdot, transpose, \ diagonal, searchsorted, argsort, convolve, dot, \ outer as outerproduct, inner as innerproduct, correlate as cross_correlate, \ place as insert |