summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1991-10-20 20:26:16 (GMT)
committerGuido van Rossum <guido@python.org>1991-10-20 20:26:16 (GMT)
commit7e3090cf08413217d7dfb7dff83338ee389fb3e1 (patch)
treea6e37942bcad0473bf6271ecf12c9087640b632f /Python/ceval.c
parentfbab905ae1fe6320268301193d953d25d2acb5c1 (diff)
downloadcpython-7e3090cf08413217d7dfb7dff83338ee389fb3e1.zip
cpython-7e3090cf08413217d7dfb7dff83338ee389fb3e1.tar.gz
cpython-7e3090cf08413217d7dfb7dff83338ee389fb3e1.tar.bz2
newclassobject() gets a third argument
Diffstat (limited to 'Python/ceval.c')
-rw-r--r--Python/ceval.c2
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);
}