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 243de29..77f5c55 100644
--- a/Include/object.h
+++ b/Include/object.h
@@ -227,7 +227,7 @@
 	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;