mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
Issue #22570: Renamed Py_SETREF to Py_XSETREF.
This commit is contained in:
parent
0e0563ca2c
commit
48842714b9
37 changed files with 132 additions and 132 deletions
|
|
@ -294,10 +294,10 @@ partial_setstate(partialobject *pto, PyObject *state)
|
|||
else
|
||||
Py_INCREF(dict);
|
||||
|
||||
Py_SETREF(pto->fn, fn);
|
||||
Py_SETREF(pto->args, fnargs);
|
||||
Py_SETREF(pto->kw, kw);
|
||||
Py_SETREF(pto->dict, dict);
|
||||
Py_XSETREF(pto->fn, fn);
|
||||
Py_XSETREF(pto->args, fnargs);
|
||||
Py_XSETREF(pto->kw, kw);
|
||||
Py_XSETREF(pto->dict, dict);
|
||||
Py_RETURN_NONE;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue