From: Guido van Rossum Date: Sun, 20 Oct 1991 20:26:16 +0000 (+0000) Subject: newclassobject() gets a third argument X-Git-Tag: v0.9.8~782 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7e3090cf08413217d7dfb7dff83338ee389fb3e1;p=thirdparty%2FPython%2Fcpython.git newclassobject() gets a third argument --- diff --git a/Python/ceval.c b/Python/ceval.c index 1c8f3af108e7..76869ff7d9fb 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -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); }