Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix assert
  • Loading branch information
kumaraditya303 committed May 15, 2025
commit b09f23f4af9f5177436fc4010346695088d43908
2 changes: 1 addition & 1 deletion Objects/object.c
Original file line number Diff line number Diff line change
Expand Up @@ -1671,7 +1671,7 @@ _PyObject_GetMethodStackRef(PyThreadState *ts, PyObject *obj,
int meth_found = 0;

int ret = 0;
*method = PyStackRef_NULL;
assert(PyStackRef_IsNull(*method));

PyTypeObject *tp = Py_TYPE(obj);
if (!_PyType_IsReady(tp)) {
Expand Down
Loading