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 1445c28 commit 5be6d2fCopy full SHA for 5be6d2f
Objects/codeobject.c
@@ -1911,7 +1911,7 @@ code_dealloc(PyObject *self)
1911
Py_XDECREF(co->co_linetable);
1912
Py_XDECREF(co->co_exceptiontable);
1913
#ifdef Py_GIL_DISABLED
1914
- assert(co->_co_unique_id == 0);
+ assert(co->_co_unique_id == _Py_INVALID_UNIQUE_ID);
1915
#endif
1916
if (co->_co_cached != NULL) {
1917
Py_XDECREF(co->_co_cached->_co_code);
0 commit comments