diff options
author | Robert Kern <robert.kern@gmail.com> | 2008-02-28 07:06:24 +0000 |
---|---|---|
committer | Robert Kern <robert.kern@gmail.com> | 2008-02-28 07:06:24 +0000 |
commit | 3cbfb32167361a681ab1d7cad8305b528ee92c81 (patch) | |
tree | 2af64c331b8130ec036f0ff567b400a86470af2d /numpy/core/numeric.py | |
parent | bcbba6f0917ad004b1468294128e3269c38f21c3 (diff) | |
download | numpy-3cbfb32167361a681ab1d7cad8305b528ee92c81.tar.gz |
Omit loadtxt and savetxt from __all__
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r-- | numpy/core/numeric.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py index e77b4098a..0ac6d610f 100644 --- a/numpy/core/numeric.py +++ b/numpy/core/numeric.py @@ -12,7 +12,7 @@ __all__ = ['newaxis', 'ndarray', 'flatiter', 'ufunc', 'array_repr', 'array_str', 'set_string_function', 'little_endian', 'require', 'fromiter', 'array_equal', 'array_equiv', - 'indices', 'fromfunction', 'loadtxt', 'savetxt', + 'indices', 'fromfunction', 'load', 'loads', 'isscalar', 'binary_repr', 'base_repr', 'ones', 'identity', 'allclose', 'compare_chararrays', 'putmask', 'seterr', 'geterr', 'setbufsize', 'getbufsize', |