From 8d197674039bc3bc2f054095148ddaadec3afc97 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Wed, 9 Oct 2013 14:53:01 +0200 Subject: Close #19199: Remove ``PyThreadState.tick_counter`` field --- Python/pystate.c | 1 - 1 file changed, 1 deletion(-) (limited to 'Python/pystate.c') 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 -- cgit v1.2.1