summaryrefslogtreecommitdiff
path: root/numpy/lib/function_base.py
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2007-10-09 03:08:26 +0000
committerTravis Oliphant <oliphant@enthought.com>2007-10-09 03:08:26 +0000
commit8095de4f7da6f50b129f76a9e261abe8ebc37b9a (patch)
tree31c90e5fdeabc81e03e5e6543d1c17ae67782698 /numpy/lib/function_base.py
parent382beab52f444e3ce7c2a823077a4a1a0384a584 (diff)
downloadnumpy-8095de4f7da6f50b129f76a9e261abe8ebc37b9a.tar.gz
Fix Ticket #588: problem with negative striding and fast blas implementation of dot
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r--numpy/lib/function_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py
index 4c0d671de..3dcac3d7e 100644
--- a/numpy/lib/function_base.py
+++ b/numpy/lib/function_base.py
@@ -1,7 +1,7 @@
__docformat__ = "restructuredtext en"
__all__ = ['logspace', 'linspace',
'select', 'piecewise', 'trim_zeros',
- 'copy', 'iterable', #'base_repr', 'binary_repr',
+ 'copy', 'iterable',
'diff', 'gradient', 'angle', 'unwrap', 'sort_complex', 'disp',
'unique', 'extract', 'place', 'nansum', 'nanmax', 'nanargmax',
'nanargmin', 'nanmin', 'vectorize', 'asarray_chkfinite', 'average',