Commit e9b8307e authored by scoder's avatar scoder

Merge pull request #313 from vbraun/setinterrupt_nogil

Mark PyErr_SetInterrupt as nogil
parents 9f8301e9 305b3d54
......@@ -223,7 +223,7 @@ cdef extern from "Python.h":
# function returns 0. The error indicator may or may not be
# cleared if it was previously set.
void PyErr_SetInterrupt()
void PyErr_SetInterrupt() nogil
# This function simulates the effect of a SIGINT signal arriving
# -- the next time PyErr_CheckSignals() is called,
# KeyboardInterrupt will be raised. It may be called without
......
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