Commit 0857ab4c authored by Victor Stinner's avatar Victor Stinner

(Merge 3.3) Issue #18343: faulthandler.register() now keeps the previous signal

handler when the function is called twice, so faulthandler.unregister()
restores correctly the original signal handler.
parents 1d5b9335 8d379547
......@@ -138,6 +138,10 @@ Core and Builtins
Library
-------
- Issue #18343: faulthandler.register() now keeps the previous signal handler
when the function is called twice, so faulthandler.unregister() restores
correctly the original signal handler.
- Issue #17097: Make multiprocessing ignore EINTR.
- Issue #18339: Negative ints keys in unpickler.memo dict no longer cause a
......
......@@ -741,6 +741,8 @@ faulthandler_register_py(PyObject *self,
PyErr_SetFromErrno(PyExc_OSError);
return NULL;
}
user->previous = previous;
}
Py_XDECREF(user->file);
......@@ -749,7 +751,6 @@ faulthandler_register_py(PyObject *self,
user->fd = fd;
user->all_threads = all_threads;
user->chain = chain;
user->previous = previous;
user->interp = tstate->interp;
user->enabled = 1;
......
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