Fix trailing whitespaces in C files. (#4130)

This commit is contained in:
Serhiy Storchaka 2017-10-26 16:59:40 +03:00 committed by GitHub
parent 56d1f5ca32
commit bdf4298ae2
4 changed files with 6 additions and 6 deletions

View file

@ -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) {