diff options
author | Skip Montanaro <skip@pobox.com> | 2002-09-03 20:24:31 +0000 |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2002-09-03 20:24:31 +0000 |
commit | e6b0bd9880101bd215c170b5f5febb9196cedbab (patch) | |
tree | 42af7e502eb639558e6f893c0c848a19e35e7fa7 /Python | |
parent | 2c305812da91cda901cd9726f099b5c8445661a8 (diff) | |
download | cpython-e6b0bd9880101bd215c170b5f5febb9196cedbab.tar.gz |
missed this one on the previous multi-file checkin - see
http://python.org/sf/602191
Diffstat (limited to 'Python')
-rw-r--r-- | Python/pystate.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Python/pystate.c b/Python/pystate.c index 9a41ccffd4..ad92ddec26 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; |