From 0e12bcd24333f8575a40b4fd525a5c029c9d217c Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Tue, 21 Mar 2000 16:14:47 +0000 Subject: [PATCH] Updated comment: in PyTypeObject: /* More standard operations (at end for binary compatibility) */ should now be: /* More standard operations (here for binary compatibility) */ since they're no longer at the end! --- Include/object.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/object.h b/Include/object.h index 243de295e4f..77f5c55b974 100644 --- a/Include/object.h +++ b/Include/object.h @@ -227,7 +227,7 @@ typedef struct _typeobject { PySequenceMethods *tp_as_sequence; PyMappingMethods *tp_as_mapping; - /* More standard operations (at end for binary compatibility) */ + /* More standard operations (here for binary compatibility) */ hashfunc tp_hash; ternaryfunc tp_call;