Commit 192fb936 authored by Andrea Bedini's avatar Andrea Bedini

Fix npy_bool signedness

From numpy's definition in

https://github.com/numpy/numpy/blob/master/numpy/core/include/numpy/npy_common.h#L211

```typedef unsigned char npy_bool;```
parent 91886a47
......@@ -293,7 +293,7 @@ cdef extern from "numpy/arrayobject.h":
# info.shape was stored after info.strides in the same block
ctypedef signed char npy_bool
ctypedef unsigned char npy_bool
ctypedef signed char npy_byte
ctypedef signed short npy_short
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment