diff options
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ceval.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ build_class(v, w) err_setstr(SystemError, "build_class with non-dictionary"); return NULL; } - return newclassobject(v, w); + return newclassobject(v, w, (object *) NULL); } |