Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d320c34

Browse files
committed
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.
1 parent 6aefd91 commit d320c34

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Python/ceval.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ Py_MakePendingCalls(void)
302302

303303
static int recursion_limit = 1000;
304304

305-
int Py_GetRecursionLimit()
305+
int Py_GetRecursionLimit(void)
306306
{
307307
return recursion_limit;
308308
}

0 commit comments

Comments
 (0)