Skip to content

Commit 0b880c7

Browse files
Clarify a TODO comment.
1 parent 0c8231a commit 0b880c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/pystate.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1266,7 +1266,7 @@ void
12661266
PyThreadState_Clear(PyThreadState *tstate)
12671267
{
12681268
assert(tstate->_status.initialized && !tstate->_status.cleared);
1269-
// XXX !tstate->_status.bound || tstate->_status.unbound
1269+
// XXX assert(!tstate->_status.bound || tstate->_status.unbound);
12701270
tstate->_status.finalizing = 1; // just in case
12711271

12721272
/* XXX Conditions we need to enforce:

0 commit comments

Comments
 (0)