summaryrefslogtreecommitdiffstats
path: root/Python/pystate.c
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-03-18 19:53:15 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-03-18 19:53:15 (GMT)
commit009b811d678f36cf63be4fe26f3fbaa38aa0078e (patch)
treea24ddae0e641ac1bce8a5b33526bd05bd04d264c /Python/pystate.c
parent6c32585f677b71eb1206852d24f077f602780c85 (diff)
downloadcpython-009b811d678f36cf63be4fe26f3fbaa38aa0078e.zip
cpython-009b811d678f36cf63be4fe26f3fbaa38aa0078e.tar.gz
cpython-009b811d678f36cf63be4fe26f3fbaa38aa0078e.tar.bz2
Removed unintentional trailing spaces in non-external and non-generated C files.
Diffstat (limited to 'Python/pystate.c')
-rw-r--r--Python/pystate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pystate.c b/Python/pystate.c
index ee1e469..926ef07 100644
--- a/Python/pystate.c
+++ b/Python/pystate.c
@@ -228,7 +228,7 @@ new_threadstate(PyInterpreterState *interp, int init)
tstate->next->prev = tstate;
interp->tstate_head = tstate;
HEAD_UNLOCK();
-
+
#if defined _MSC_VER && _MSC_VER >= 1900
/* Issue #23524: Temporary fix to disable termination due to invalid parameters */
_set_thread_local_invalid_parameter_handler((_invalid_parameter_handler)_Py_silent_invalid_parameter_handler);