Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 572fd57

Browse files
committed
Changed 'class member' to 'instance'.
1 parent 21ed88c commit 572fd57

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Include/classobject.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ It should be possible to use other object types as base classes,
3030
but 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

3939
extern object *newclassobject PROTO((object *, object *));
40-
extern object *newclassmemberobject PROTO((object *));
40+
extern object *newinstanceobject PROTO((object *));
4141
extern object *newclassmethodobject PROTO((object *, object *));
4242

4343
extern object *classmethodgetfunc PROTO((object *));

0 commit comments

Comments
 (0)