It seems that various recent language changes have not made it into any of the indices (super, property, __slots__, ...). LibRef: 3.14, first paragraph, last sentence unfinished "...to avoid confusing." 3.3, first paragraph after XXX: "Not all objects can be weakly referenced; those objects which do include class instances,..." If I get around to it myself, will try to submit patches for above :). Thanks... Mark
Logged In: YES user_id=80475 super(), property(), classmethod(), object(), staticmethod() are now all in the index. They automatically make it there when their functions were documented. Sadly, __slots__ is not indexed because it is not yet documented. Fixed paragraph 3.14. See Doc/lib/libpickle.tex 1.42 For paragraph 3.3, it isn't clear what you want changed. Please let me know so we can clear this bug report.
Logged In: YES user_id=80475 Added docs and indexing for __metaclass__ and __slots__. The only thing left is your comment on 3.3 which looks fine to me. Closing bug and marking as fixed.
Logged In: YES user_id=127614 Sorry for the belated followup. The 3.3 note was to point out the mismatched verb ("can" changes to "do"): Re-write: "Not all objects can be weakly referenced; those objects which can include class instances, ..." Thanks, Mark