From bdf4298ae2c1d720fd808520267ca3a4e56df842 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Thu, 26 Oct 2017 16:59:40 +0300 Subject: Fix trailing whitespaces in C files. (#4130) --- Python/pystate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/pystate.c') diff --git a/Python/pystate.c b/Python/pystate.c index 82ebf4da7d..55ff64951b 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) { -- cgit v1.2.1