Kaydet (Commit) c96ef6ab authored tarafından Guido van Rossum's avatar Guido van Rossum

properly initialize optional arguments to apply()

üst faa436c7
......@@ -80,7 +80,7 @@ builtin_apply(self, args)
object *self;
object *args;
{
object *func, *alist, *kwdict = NULL;
object *func, *alist = NULL, *kwdict = NULL;
if (!newgetargs(args, "O|OO:apply", &func, &alist, &kwdict))
return NULL;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment