It looks like nightly cython warns:
warning: numpy/random/mtrand.pyx:4966:29: the result of using negative indices inside of code sections marked as 'wraparound=False' is undefined
And indeed, there's a negative index:
|
for method_name in __all__[:-1]: |
But the file is globally set to have wraparound=False.
It looks like nightly cython warns:
And indeed, there's a negative index:
numpy/numpy/random/mtrand.pyx
Line 4966 in ba9205f
But the file is globally set to have
wraparound=False.