diff --git a/Python/ceval.c b/Python/ceval.c
index 8b3823a05d9c7e3041656b48913683bb13e66306..6364c3f681dfa760fbb2f8cd3eab7d131124f850 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -469,8 +469,8 @@ static int unpack_iterable(PyObject *, int, PyObject **);
 
 /* for manipulating the thread switch and periodic "stuff" - used to be
    per thread, now just a pair o' globals */
-int _Py_CheckInterval = 10;
-volatile int _Py_Ticker = 10;
+int _Py_CheckInterval = 100;
+volatile int _Py_Ticker = 100;
 
 PyObject *
 PyEval_EvalCode(PyCodeObject *co, PyObject *globals, PyObject *locals)