summaryrefslogtreecommitdiff
path: root/numpy/oldnumeric/misc.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2007-12-15 18:54:52 +0000
committerTravis Oliphant <oliphant@enthought.com>2007-12-15 18:54:52 +0000
commite76b5fa6896c09257181675bbf4cf47789d32927 (patch)
tree7174e22c68fc47df61e745ee18625ee9f4f5b88c /numpy/oldnumeric/misc.py
parent02ee35a7e1c722a1cdac8f3a60fe9ef7aa079a37 (diff)
downloadnumpy-e76b5fa6896c09257181675bbf4cf47789d32927.tar.gz
Create a branch for io work in NumPy
Diffstat (limited to 'numpy/oldnumeric/misc.py')
-rw-r--r--numpy/oldnumeric/misc.py42
1 files changed, 0 insertions, 42 deletions
diff --git a/numpy/oldnumeric/misc.py b/numpy/oldnumeric/misc.py
deleted file mode 100644
index 4b43f3985..000000000
--- a/numpy/oldnumeric/misc.py
+++ /dev/null
@@ -1,42 +0,0 @@
-# Functions that already have the correct syntax or miscellaneous functions
-
-
-__all__ = ['load', 'sort', 'copy_reg', 'clip', 'Unpickler', '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', 'loads', 'cross_correlate',
- 'Pickler', 'dot', 'outerproduct', 'innerproduct', 'insert']
-
-import types
-import StringIO
-import pickle
-import math
-import copy
-import copy_reg
-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, \
- 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
-
-
-class Unpickler(pickle.Unpickler):
- def __init__(self, *args, **kwds):
- raise NotImplemented
- def load_array(self):
- raise NotImplemented
-
-class Pickler(pickle.Pickler):
- def __init__(self, *args, **kwds):
- raise NotImplemented
- def save_array(self, object):
- raise NotImplemented