This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Additional index items, other minor details
Type: Stage:
Components: Documentation Versions: Python 2.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: average, rhettinger
Priority: normal Keywords:

Created on 2003-06-20 11:31 by average, last changed 2022-04-10 16:09 by admin. This issue is now closed.

Messages (5)
msg16553 - (view) Author: Mark J (average) Date: 2003-06-20 11:31
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
msg16554 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2003-06-25 15:13
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.
msg16555 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2003-06-27 17:32
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.
msg16556 - (view) Author: Mark J (average) Date: 2003-07-02 10:42
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
<maj64 at antisocial dot com>
msg16557 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2003-07-02 15:25
Logged In: YES 
user_id=80475

Okay, that is fixed too.
History
Date User Action Args
2022-04-10 16:09:21adminsetgithub: 38692
2003-06-20 11:31:32averagecreate