diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-10-09 12:53:01 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-10-09 12:53:01 (GMT) |
commit | 8d197674039bc3bc2f054095148ddaadec3afc97 (patch) | |
tree | 00ed8b0ce67f7f5003564bd56c9db8a89daba064 /Python/pystate.c | |
parent | 210871db72ef4a8bcdb6eb46511ca2b4e4a4a1d7 (diff) | |
download | cpython-8d197674039bc3bc2f054095148ddaadec3afc97.zip cpython-8d197674039bc3bc2f054095148ddaadec3afc97.tar.gz cpython-8d197674039bc3bc2f054095148ddaadec3afc97.tar.bz2 |
Close #19199: Remove ``PyThreadState.tick_counter`` field
Diffstat (limited to 'Python/pystate.c')
-rw-r--r-- | Python/pystate.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/pystate.c b/Python/pystate.c index ecd00ce..6be71de 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 |