summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-10-09 12:53:01 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2013-10-09 12:53:01 (GMT)
commit8d197674039bc3bc2f054095148ddaadec3afc97 (patch)
tree00ed8b0ce67f7f5003564bd56c9db8a89daba064 /Python/ceval.c
parent210871db72ef4a8bcdb6eb46511ca2b4e4a4a1d7 (diff)
downloadcpython-8d197674039bc3bc2f054095148ddaadec3afc97.zip
cpython-8d197674039bc3bc2f054095148ddaadec3afc97.tar.gz
cpython-8d197674039bc3bc2f054095148ddaadec3afc97.tar.bz2
Close #19199: Remove ``PyThreadState.tick_counter`` field
Diffstat (limited to 'Python/ceval.c')
-rw-r--r--Python/ceval.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index dcfe8ec..2d52862 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