]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Renamed class members to instances and class methods to instance methods
authorGuido van Rossum <guido@python.org>
Sun, 5 May 1991 20:04:55 +0000 (20:04 +0000)
committerGuido van Rossum <guido@python.org>
Sun, 5 May 1991 20:04:55 +0000 (20:04 +0000)
,.

Include/classobject.h

index 088815cc4848ccb536a6751427b31d42e332e6d2..e8dd93a262a29562b6a0bac6c341617151b1d8fb 100644 (file)
@@ -30,15 +30,15 @@ It should be possible to use other object types as base classes,
 but currently it isn't.  We'll see if we can fix that later, sigh...
 */
 
-extern typeobject Classtype, Instancetype, Classmethodtype;
+extern typeobject Classtype, Instancetype, Instancemethodtype;
 
 #define is_classobject(op) ((op)->ob_type == &Classtype)
-#define is_instanceobject(op) ((op)->ob_type == &Classmembertype)
-#define is_classmethodobject(op) ((op)->ob_type == &Classmethodtype)
+#define is_instanceobject(op) ((op)->ob_type == &Instancetype)
+#define is_instancemethodobject(op) ((op)->ob_type == &Instancemethodtype)
 
 extern object *newclassobject PROTO((object *, object *));
 extern object *newinstanceobject PROTO((object *));
-extern object *newclassmethodobject PROTO((object *, object *));
+extern object *newinstancemethodobject PROTO((object *, object *));
 
-extern object *classmethodgetfunc PROTO((object *));
-extern object *classmethodgetself PROTO((object *));
+extern object *instancemethodgetfunc PROTO((object *));
+extern object *instancemethodgetself PROTO((object *));