diff options
author | Tim Peters <tim.peters@gmail.com> | 2000-09-01 03:34:26 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2000-09-01 03:34:26 (GMT) |
commit | d320c348f8c0115ce95a80524ac102ad5f6372ff (patch) | |
tree | 623e81a4b29538f50cfcb0480fe9c1450f4c9c53 /Python | |
parent | 6aefd91c7f4f446dc6ea95ea00c62fc847ce886a (diff) | |
download | cpython-d320c348f8c0115ce95a80524ac102ad5f6372ff.zip cpython-d320c348f8c0115ce95a80524ac102ad5f6372ff.tar.gz cpython-d320c348f8c0115ce95a80524ac102ad5f6372ff.tar.bz2 |
Revert removal of void from function definition. Guido sez I can take it
out again after we complete switching to C++ <wink>. Thanks to Greg Stein
for hitting me.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ceval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 018c8af..45f6556 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -302,7 +302,7 @@ Py_MakePendingCalls(void) static int recursion_limit = 1000; -int Py_GetRecursionLimit() +int Py_GetRecursionLimit(void) { return recursion_limit; } |