mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
gh-112066: Use PyDict_SetDefaultRef
in place of PyDict_SetDefault
. (#112211)
This changes a number of internal usages of `PyDict_SetDefault` to use `PyDict_SetDefaultRef`. Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
This commit is contained in:
parent
fedbf77191
commit
ef3ceab09d
6 changed files with 32 additions and 25 deletions
|
@ -691,11 +691,10 @@ _parse_object_unicode(PyScannerObject *s, PyObject *memo, PyObject *pystr, Py_ss
|
|||
key = scanstring_unicode(pystr, idx + 1, s->strict, &next_idx);
|
||||
if (key == NULL)
|
||||
goto bail;
|
||||
memokey = PyDict_SetDefault(memo, key, key);
|
||||
if (memokey == NULL) {
|
||||
if (PyDict_SetDefaultRef(memo, key, key, &memokey) < 0) {
|
||||
goto bail;
|
||||
}
|
||||
Py_SETREF(key, Py_NewRef(memokey));
|
||||
Py_SETREF(key, memokey);
|
||||
idx = next_idx;
|
||||
|
||||
/* skip whitespace between key and : delimiter, read :, skip whitespace */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue