summaryrefslogtreecommitdiffstats
path: root/Python/pystate.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-09-09 21:57:58 (GMT)
committerBenjamin Peterson <benjamin@python.org>2016-09-09 21:57:58 (GMT)
commit4fd64b9a6aba9e6e1a5d8b74f45160cce258a00c (patch)
treee57bfdc6c9ff29bf7e0f91d73e0c02f09ea5c659 /Python/pystate.c
parentad46443e9d28553ad5dd8477ff5458fd07d53b77 (diff)
downloadcpython-4fd64b9a6aba9e6e1a5d8b74f45160cce258a00c.zip
cpython-4fd64b9a6aba9e6e1a5d8b74f45160cce258a00c.tar.gz
cpython-4fd64b9a6aba9e6e1a5d8b74f45160cce258a00c.tar.bz2
remove ceval timestamp support
Diffstat (limited to 'Python/pystate.c')
-rw-r--r--Python/pystate.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/Python/pystate.c b/Python/pystate.c
index a0a8c97..65c244e 100644
--- a/Python/pystate.c
+++ b/Python/pystate.c
@@ -99,9 +99,6 @@ PyInterpreterState_New(void)
interp->dlopenflags = RTLD_LAZY;
#endif
#endif
-#ifdef WITH_TSC
- interp->tscdump = 0;
-#endif
HEAD_LOCK();
interp->next = interp_head;