Browse Source

Issue #27591: Merge from 3.5

pull/9921/head
Berker Peksag 10 years ago
parent
commit
bd8b443742
  1. 3
      Modules/_multiprocessing/semaphore.c

3
Modules/_multiprocessing/semaphore.c

@ -114,6 +114,9 @@ semlock_acquire(SemLockObject *self, PyObject *args, PyObject *kwds)
assert(sigint_event != NULL);
handles[nhandles++] = sigint_event;
}
else {
sigint_event = NULL;
}
/* do the wait */
Py_BEGIN_ALLOW_THREADS

Loading…
Cancel
Save