From b0352fa3fccf9e8c76bc52aa93333bbecaf04948 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 12 Jan 1996 01:15:01 +0000 Subject: fix args options for setcheckinterval --- 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 5fc098d527b..d59a04fe0cd 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -195,7 +195,7 @@ static struct methodlist sys_methods[] = { #endif {"setprofile", sys_setprofile, 0}, {"settrace", sys_settrace, 0}, - {"setcheckinterval", sys_setcheckinterval, 0}, + {"setcheckinterval", sys_setcheckinterval, 1}, {NULL, NULL} /* sentinel */ }; -- cgit v1.2.3