diff options
author | Tim Peters <tim.peters@gmail.com> | 2000-09-01 03:34:26 +0000 |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2000-09-01 03:34:26 +0000 |
commit | 3a6864b2ec0b94e5c1b141f619152608aa091300 (patch) | |
tree | 065264b3ac170b58bff2f999c296b300b45a82f3 /Python | |
parent | a62e2ec8a7b06b1477186ef0229794ea955957c0 (diff) | |
download | cpython-3a6864b2ec0b94e5c1b141f619152608aa091300.tar.gz |
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 018c8af781..45f6556086 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; } |