We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fac6e65 + 7577c4e commit d37e243Copy full SHA for d37e243
1 file changed
dynd/cpp/array.pxd
@@ -27,6 +27,7 @@ cdef extern from 'dynd/array.hpp' namespace 'dynd::nd' nogil:
27
type get_dtype(size_t)
28
intptr_t get_ndim()
29
intptr_t get_dim_size() except +translate_exception
30
+ intptr_t get_dim_size(intptr_t) except +translate_exception
31
32
array p(string)
33
@@ -41,7 +42,7 @@ cdef extern from 'dynd/array.hpp' namespace 'dynd::nd' nogil:
41
42
array eval() except +translate_exception
43
array cast(type) except +translate_exception
44
array ucast(type, ssize_t) except +translate_exception
-
45
+
46
# These should only be used with versions of Cython later than 0.23.
47
# Otherwise the exception handler isn't properly applied and the
48
# resulting uncaught C++ exceptions can crash the Python interpreter.
0 commit comments