ndarray_or_iterable is no longer exposed to python

Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
This commit is contained in:
Ian Bell
2014-08-26 14:17:11 +02:00
parent 5cdb9c5d0e
commit 1d080878a7

View File

@@ -35,7 +35,7 @@ cdef bint iterable(object a):
else:
return isinstance(a,(list, tuple))
cpdef ndarray_or_iterable(object input):
cdef ndarray_or_iterable(object input):
if _numpy_supported:
return np.array(input)
else: