File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -30,14 +30,14 @@ It should be possible to use other object types as base classes,
3030but currently it isn't. We'll see if we can fix that later, sigh...
3131*/
3232
33- extern typeobject Classtype , Classmembertype , Classmethodtype ;
33+ extern typeobject Classtype , Instancetype , Classmethodtype ;
3434
3535#define is_classobject (op ) ((op)->ob_type == &Classtype)
36- #define is_classmemberobject (op ) ((op)->ob_type == &Classmembertype)
36+ #define is_instanceobject (op ) ((op)->ob_type == &Classmembertype)
3737#define is_classmethodobject (op ) ((op)->ob_type == &Classmethodtype)
3838
3939extern object * newclassobject PROTO ((object * , object * ) );
40- extern object * newclassmemberobject PROTO ((object * ) );
40+ extern object * newinstanceobject PROTO ((object * ) );
4141extern object * newclassmethodobject PROTO ((object * , object * ) );
4242
4343extern object * classmethodgetfunc PROTO ((object * ) );
You can’t perform that action at this time.
0 commit comments