diff options
author | Guido van Rossum <guido@python.org> | 1991-10-20 20:12:10 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1991-10-20 20:12:10 (GMT) |
commit | 2b9d6e200856a547f5a1f409ca439737dc132abb (patch) | |
tree | e0a5006a84191be47e7bd875f51bd6cefd3acd44 /Include/classobject.h | |
parent | 9430839accd5920b3a503a8ac02c5de1ae2449a8 (diff) | |
download | cpython-2b9d6e200856a547f5a1f409ca439737dc132abb.zip cpython-2b9d6e200856a547f5a1f409ca439737dc132abb.tar.gz cpython-2b9d6e200856a547f5a1f409ca439737dc132abb.tar.bz2 |
newclassobject gets a third parameter (optional class name)
Diffstat (limited to 'Include/classobject.h')
-rw-r--r-- | Include/classobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/classobject.h b/Include/classobject.h index e8dd93a..fb52203 100644 --- a/Include/classobject.h +++ b/Include/classobject.h @@ -36,7 +36,7 @@ extern typeobject Classtype, Instancetype, Instancemethodtype; #define is_instanceobject(op) ((op)->ob_type == &Instancetype) #define is_instancemethodobject(op) ((op)->ob_type == &Instancemethodtype) -extern object *newclassobject PROTO((object *, object *)); +extern object *newclassobject PROTO((object *, object *, object *)); extern object *newinstanceobject PROTO((object *)); extern object *newinstancemethodobject PROTO((object *, object *)); |