Skip to content

Commit b128a9d

Browse files
committed
missing commit
1 parent de71a74 commit b128a9d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Objects/object.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3078,7 +3078,7 @@ Py_ReprEnter(PyObject *obj)
30783078
list = PyList_New(0);
30793079
if (list == NULL)
30803080
return -1;
3081-
if (_PyDict_SetItem_Take(dict, &_Py_ID(Py_Repr), list) < 0) {
3081+
if (_PyDict_SetItem_Take2((PyDictObject *)dict, &_Py_ID(Py_Repr), list) < 0) {
30823082
return -1;
30833083
}
30843084
}

0 commit comments

Comments
 (0)