diff options
Diffstat (limited to 'Python/getargs.c')
-rw-r--r-- | Python/getargs.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Python/getargs.c b/Python/getargs.c index 605cb01957..15cd4e6ce4 100644 --- a/Python/getargs.c +++ b/Python/getargs.c @@ -179,6 +179,13 @@ vgetargs1(args, format, va, compat) return 0; } else if (min == 1 && max == 1) { + if (args == NULL) { + sprintf(msgbuf, + "%s requires at least one argument", + fname==NULL ? "function" : fname); + err_setstr(TypeError, msgbuf); + return 0; + } msg = convertitem(args, &format, &va, levels, msgbuf); if (msg == NULL) return 1; |