diff options
author | Fred Drake <fdrake@acm.org> | 2000-03-21 16:14:47 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-03-21 16:14:47 (GMT) |
commit | 0e12bcd24333f8575a40b4fd525a5c029c9d217c (patch) | |
tree | 4f730191cadb1f801879bef7a988297c228d02ea /Include | |
parent | 51ac58039f62ef9d605974dae32a6ada9c26039b (diff) | |
download | cpython-0e12bcd24333f8575a40b4fd525a5c029c9d217c.zip cpython-0e12bcd24333f8575a40b4fd525a5c029c9d217c.tar.gz cpython-0e12bcd24333f8575a40b4fd525a5c029c9d217c.tar.bz2 |
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!
Diffstat (limited to 'Include')
-rw-r--r-- | Include/object.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ 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; |