summaryrefslogtreecommitdiff
path: root/numpy/oldnumeric/misc.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/oldnumeric/misc.py')
-rw-r--r--numpy/oldnumeric/misc.py29
1 files changed, 29 insertions, 0 deletions
diff --git a/numpy/oldnumeric/misc.py b/numpy/oldnumeric/misc.py
new file mode 100644
index 000000000..d6e0f2430
--- /dev/null
+++ b/numpy/oldnumeric/misc.py
@@ -0,0 +1,29 @@
+# Functions that already have the correct syntax or miscellaneous functions
+
+
+__all__ = ['sort', 'copy_reg', 'clip', 'rank',
+ 'sign', 'shape', 'types', 'allclose', 'size',
+ 'choose', 'swapaxes', 'array_str',
+ 'pi', 'math', 'concatenate', 'putmask', 'put',
+ 'around', 'vdot', 'transpose', 'array2string', 'diagonal',
+ 'searchsorted', 'copy', 'resize',
+ 'array_repr', 'e', 'StringIO', 'pickle',
+ 'argsort', 'convolve', 'cross_correlate',
+ 'dot', 'outerproduct', 'innerproduct', 'insert']
+
+import types
+import StringIO
+import pickle
+import math
+import copy
+import copy_reg
+
+from numpy import sort, clip, rank, sign, shape, putmask, allclose, size,\
+ choose, swapaxes, array_str, array_repr, e, pi, put, \
+ resize, around, concatenate, vdot, transpose, \
+ diagonal, searchsorted, argsort, convolve, dot, \
+ outer as outerproduct, inner as innerproduct, \
+ correlate as cross_correlate, \
+ place as insert
+
+from array_printer import array2string