We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b62374 commit 9a6b702Copy full SHA for 9a6b702
Objects/dictobject.c
@@ -4947,12 +4947,12 @@ PyDict_GetItemString(PyObject *v, const char *key)
4947
if (kv == NULL) {
4948
PyErr_FormatUnraisable(
4949
"Exception ignored in PyDict_GetItemString(); consider using "
4950
- "PyDict_GetItemRefString()");
+ "PyDict_GetItemStringRef()");
4951
return NULL;
4952
}
4953
rv = dict_getitem(v, kv,
4954
4955
4956
Py_DECREF(kv);
4957
return rv; // borrowed reference
4958
0 commit comments