Skip to content

Commit 5be6d2f

Browse files
colesburyYhg1s
andauthored
Update Objects/codeobject.c
Co-authored-by: T. Wouters <thomas@python.org>
1 parent 1445c28 commit 5be6d2f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/codeobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1911,7 +1911,7 @@ code_dealloc(PyObject *self)
19111911
Py_XDECREF(co->co_linetable);
19121912
Py_XDECREF(co->co_exceptiontable);
19131913
#ifdef Py_GIL_DISABLED
1914-
assert(co->_co_unique_id == 0);
1914+
assert(co->_co_unique_id == _Py_INVALID_UNIQUE_ID);
19151915
#endif
19161916
if (co->_co_cached != NULL) {
19171917
Py_XDECREF(co->_co_cached->_co_code);

0 commit comments

Comments
 (0)