diff options
author | Guido van Rossum <guido@python.org> | 1996-01-12 01:15:01 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-01-12 01:15:01 +0000 |
commit | f79b133d1e4eca198ca480cd1ea02335afdfc5b5 (patch) | |
tree | f12e4ce22d9886f0564ac2bf4f4a6fc593a10191 /Python/sysmodule.c | |
parent | d18c8148a28548a3dcebd07163f189d9f944f7ae (diff) | |
download | cpython-f79b133d1e4eca198ca480cd1ea02335afdfc5b5.tar.gz |
fix args options for setcheckinterval
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 5fc098d527..d59a04fe0c 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 */ }; |