Commit 9e032cb9 authored by Guido van Rossum's avatar Guido van Rossum

newclassobject() gets a third argument

parent 2a6ad864
......@@ -1524,5 +1524,5 @@ build_class(v, w)
err_setstr(SystemError, "build_class with non-dictionary");
return NULL;
}
return newclassobject(v, w);
return newclassobject(v, w, (object *) 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