summaryrefslogtreecommitdiff
path: root/numpy/oldnumeric/misc.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2006-08-28 19:52:55 +0000
committerTravis Oliphant <oliphant@enthought.com>2006-08-28 19:52:55 +0000
commit64be3e2a89c72a8b23ad11b3719bd66725658c61 (patch)
tree4321cfd32dbc856fa384a3394451460cf591dfbf /numpy/oldnumeric/misc.py
parentcaa4b1340b41fee581433ad5802c49b8d6de85b7 (diff)
downloadnumpy-1.0b4.tar.gz
Undoing changes mistakenly made on tag 1.0b4v1.0b4
Diffstat (limited to 'numpy/oldnumeric/misc.py')
-rw-r--r--numpy/oldnumeric/misc.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/numpy/oldnumeric/misc.py b/numpy/oldnumeric/misc.py
index d7938fcac..a6c13d780 100644
--- a/numpy/oldnumeric/misc.py
+++ b/numpy/oldnumeric/misc.py
@@ -9,7 +9,7 @@ __all__ = ['load', 'sort', 'copy_reg', 'clip', 'putmask', 'Unpickler', 'rank',
'searchsorted', 'put', 'fromfunction', 'copy', 'resize',
'array_repr', 'e', 'StringIO', 'pickle',
'argsort', 'convolve', 'loads', 'cross_correlate',
- 'Pickler', 'dot', 'outerproduct', 'innerproduct', 'insert']
+ 'Pickler', 'dot', 'outerproduct', 'innerproduct']
import types
import StringIO
@@ -23,8 +23,7 @@ from numpy import sort, clip, putmask, rank, sign, shape, allclose, size,\
choose, swapaxes, array_str, array_repr, e, pi, \
fromfunction, resize, around, concatenate, vdot, transpose, \
diagonal, searchsorted, put, argsort, convolve, dot, \
- outer as outerproduct, inner as innerproduct, correlate as cross_correlate, \
- place as insert
+ outer as outerproduct, inner as innerproduct, correlate as cross_correlate
from array_printer import array2string