diff options
author | Guido van Rossum <guido@python.org> | 1995-03-30 11:01:58 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-03-30 11:01:58 (GMT) |
commit | 9a1f3886767dac9920313471bca9299955442d1f (patch) | |
tree | de8343079ce92eab2838db96e89635df56910b5c /Python/sysmodule.c | |
parent | 527c2643d176bdc9308491d602a220cb8bfd0e8c (diff) | |
download | cpython-9a1f3886767dac9920313471bca9299955442d1f.zip cpython-9a1f3886767dac9920313471bca9299955442d1f.tar.gz cpython-9a1f3886767dac9920313471bca9299955442d1f.tar.bz2 |
init sys_checkinterval to 10
Diffstat (limited to 'Python/sysmodule.c')
-rw-r--r-- | Python/sysmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/sysmodule.c b/Python/sysmodule.c index e526652..18ded1f 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -45,7 +45,7 @@ Data members: #include "osdefs.h" object *sys_trace, *sys_profile; -int sys_checkinterval; +int sys_checkinterval = 10; static object *sysdict; |