summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorSkip Montanaro <skip@pobox.com>2002-09-03 20:24:31 (GMT)
committerSkip Montanaro <skip@pobox.com>2002-09-03 20:24:31 (GMT)
commit066a8df3a4cdd47ce4d8a48a1e35509924ea7984 (patch)
tree2384e7a2d5a4654fa305a63922ba7e63d9a86ffd /Python
parent602d45194c94a2e60becfb8aac768367412960c6 (diff)
downloadcpython-066a8df3a4cdd47ce4d8a48a1e35509924ea7984.zip
cpython-066a8df3a4cdd47ce4d8a48a1e35509924ea7984.tar.gz
cpython-066a8df3a4cdd47ce4d8a48a1e35509924ea7984.tar.bz2
missed this one on the previous multi-file checkin - see
http://python.org/sf/602191
Diffstat (limited to 'Python')
-rw-r--r--Python/pystate.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/Python/pystate.c b/Python/pystate.c
index 9a41ccf..ad92dde 100644
--- a/Python/pystate.c
+++ b/Python/pystate.c
@@ -47,7 +47,6 @@ PyInterpreterState_New(void)
interp->modules = NULL;
interp->sysdict = NULL;
interp->builtins = NULL;
- interp->checkinterval = 10;
interp->tstate_head = NULL;
#ifdef HAVE_DLOPEN
#ifdef RTLD_NOW
@@ -124,7 +123,6 @@ PyThreadState_New(PyInterpreterState *interp)
tstate->frame = NULL;
tstate->recursion_depth = 0;
- tstate->ticker = 0;
tstate->tracing = 0;
tstate->use_tracing = 0;