diff options
Diffstat (limited to 'Python')
-rw-r--r-- | Python/pystate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pystate.c b/Python/pystate.c index 82ebf4d..55ff649 100644 --- a/Python/pystate.c +++ b/Python/pystate.c @@ -450,7 +450,7 @@ PyThreadState_Clear(PyThreadState *tstate) Py_CLEAR(tstate->exc_state.exc_type); Py_CLEAR(tstate->exc_state.exc_value); Py_CLEAR(tstate->exc_state.exc_traceback); - + /* The stack of exception states should contain just this thread. */ assert(tstate->exc_info->previous_item == NULL); if (Py_VerboseFlag && tstate->exc_info != &tstate->exc_state) { |