From: Fred Drake Date: Tue, 21 Mar 2000 16:14:47 +0000 (+0000) Subject: Updated comment: in PyTypeObject: X-Git-Tag: v1.6a1~180 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0e12bcd24333f8575a40b4fd525a5c029c9d217c;p=python 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! --- diff --git a/Include/object.h b/Include/object.h index 243de295e4..77f5c55b97 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;