mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Issue #20440: Massive replacing unsafe attribute setting code with special
macro Py_SETREF.
This commit is contained in:
parent
a198645fa0
commit
5a57ade58e
28 changed files with 92 additions and 120 deletions
|
@ -380,9 +380,8 @@ faulthandler_enable(PyObject *self, PyObject *args, PyObject *kwargs)
|
|||
if (tstate == NULL)
|
||||
return NULL;
|
||||
|
||||
Py_XDECREF(fatal_error.file);
|
||||
Py_XINCREF(file);
|
||||
fatal_error.file = file;
|
||||
Py_SETREF(fatal_error.file, file);
|
||||
fatal_error.fd = fd;
|
||||
fatal_error.all_threads = all_threads;
|
||||
fatal_error.interp = tstate->interp;
|
||||
|
@ -599,9 +598,8 @@ faulthandler_dump_traceback_later(PyObject *self,
|
|||
/* Cancel previous thread, if running */
|
||||
cancel_dump_traceback_later();
|
||||
|
||||
Py_XDECREF(thread.file);
|
||||
Py_XINCREF(file);
|
||||
thread.file = file;
|
||||
Py_SETREF(thread.file, file);
|
||||
thread.fd = fd;
|
||||
thread.timeout_us = timeout_us;
|
||||
thread.repeat = repeat;
|
||||
|
@ -778,9 +776,8 @@ faulthandler_register_py(PyObject *self,
|
|||
user->previous = previous;
|
||||
}
|
||||
|
||||
Py_XDECREF(user->file);
|
||||
Py_XINCREF(file);
|
||||
user->file = file;
|
||||
Py_SETREF(user->file, file);
|
||||
user->fd = fd;
|
||||
user->all_threads = all_threads;
|
||||
user->chain = chain;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue