newclassobject() gets a third argument

This commit is contained in:
Guido van Rossum 1991-10-20 20:26:16 +00:00
parent fbab905ae1
commit 7e3090cf08
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}