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!
This commit is contained in:
Fred Drake 2000-03-21 16:14:47 +00:00
parent 51ac58039f
commit 0e12bcd243

View 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;