]> granicus.if.org Git - python/commitdiff
Updated comment: in PyTypeObject:
authorFred Drake <fdrake@acm.org>
Tue, 21 Mar 2000 16:14:47 +0000 (16:14 +0000)
committerFred Drake <fdrake@acm.org>
Tue, 21 Mar 2000 16:14:47 +0000 (16:14 +0000)
/* 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

index 243de295e4f1084e9ee900a1bfd386203e05a081..77f5c55b974e216ba445c864244d794788958351 100644 (file)
@@ -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;