diff options
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ceval.c | 1 | ||||
-rw-r--r-- | Python/pystate.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index dcfe8ec2aa..2d52862a84 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -1247,7 +1247,6 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag) a try: finally: block uninterruptible. */ goto fast_next_opcode; } - tstate->tick_counter++; #ifdef WITH_TSC ticked = 1; #endif diff --git a/Python/pystate.c b/Python/pystate.c index ecd00ce5b4..6be71de2ae 100644 --- a/Python/pystate.c +++ b/Python/pystate.c @@ -182,7 +182,6 @@ new_threadstate(PyInterpreterState *interp, int init) tstate->recursion_critical = 0; tstate->tracing = 0; tstate->use_tracing = 0; - tstate->tick_counter = 0; tstate->gilstate_counter = 0; tstate->async_exc = NULL; #ifdef WITH_THREAD |