Closed
Description
It looks like some .intersection
tests are failing. AFAICT this traces back to here:
Line 685 in bdcc5bf
Which on numpy dev during test execution isn't raising an OverflowError
and instead performs a wraparound. Interestingly enough, running:
np.asarray([2 ** 63, 2**63 + 1], dtype="int64")
With numpydev does overflow in the Python space, so perhaps a Cython issue?