> Some parts of the numpy code release the GIL, so it needs to be reacquired > in order to call the Python C_API. A quick look shows a call to > PyObject_Print in the function and there may be other such calls. The right > fix is probably to use a couple of ifdefs if there is an easy way to > determine the Python interpreter configuration <looks>... WITH_THREAD seems > to be the right flag. >
I totally missed the PyObject_Print calls on read-through. Okay, this makes sense now. I'll put together a patch the next time I'm waiting on a build :) A
_______________________________________________ NumPy-Discussion mailing list [email protected] http://mail.scipy.org/mailman/listinfo/numpy-discussion
