From 9a1f3886767dac9920313471bca9299955442d1f Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 30 Mar 1995 11:01:58 +0000 Subject: init sys_checkinterval to 10 --- Python/sysmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/sysmodule.c') diff --git a/Python/sysmodule.c b/Python/sysmodule.c index e526652d8a..18ded1f6bd 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; -- cgit v1.2.1