Skip to content

Commit

Permalink
Update Objects/codeobject.c
Browse files Browse the repository at this point in the history
Co-authored-by: T. Wouters <thomas@python.org>
  • Loading branch information
colesbury and Yhg1s authored Jan 17, 2025
1 parent 1445c28 commit 5be6d2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Objects/codeobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -1911,7 +1911,7 @@ code_dealloc(PyObject *self)
Py_XDECREF(co->co_linetable);
Py_XDECREF(co->co_exceptiontable);
#ifdef Py_GIL_DISABLED
assert(co->_co_unique_id == 0);
assert(co->_co_unique_id == _Py_INVALID_UNIQUE_ID);
#endif
if (co->_co_cached != NULL) {
Py_XDECREF(co->_co_cached->_co_code);
Expand Down

0 comments on commit 5be6d2f

Please sign in to comment.