commit | 7e3090cf08413217d7dfb7dff83338ee389fb3e1 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Sun Oct 20 20:26:16 1991 +0000 |
committer | Guido van Rossum <guido@python.org> | Sun Oct 20 20:26:16 1991 +0000 |
tree | a6e37942bcad0473bf6271ecf12c9087640b632f | |
parent | fbab905ae1fe6320268301193d953d25d2acb5c1 [diff] |
newclassobject() gets a third argument
diff --git a/Python/ceval.c b/Python/ceval.c index 1c8f3af..76869ff 100644 --- a/Python/ceval.c +++ b/Python/ceval.c
@@ -1524,5 +1524,5 @@ err_setstr(SystemError, "build_class with non-dictionary"); return NULL; } - return newclassobject(v, w); + return newclassobject(v, w, (object *) NULL); }