Close #19199: Remove `PyThreadState.tick_counter` field

This commit is contained in:
Victor Stinner 2013-10-09 14:53:01 +02:00
parent 210871db72
commit 8d19767403
5 changed files with 4 additions and 13 deletions

View file

@ -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