summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-10-26 13:59:40 (GMT)
committerGitHub <noreply@github.com>2017-10-26 13:59:40 (GMT)
commitbdf4298ae2c1d720fd808520267ca3a4e56df842 (patch)
tree7aa23788388792911019b8ad523f4ef7ef871703 /Python
parent56d1f5ca32892c7643eb8cee49c40c1644f1abfe (diff)
downloadcpython-bdf4298ae2c1d720fd808520267ca3a4e56df842.zip
cpython-bdf4298ae2c1d720fd808520267ca3a4e56df842.tar.gz
cpython-bdf4298ae2c1d720fd808520267ca3a4e56df842.tar.bz2
Fix trailing whitespaces in C files. (#4130)
Diffstat (limited to 'Python')
-rw-r--r--Python/pystate.c2
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) {