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.

Author eric.araujo
Recipients docs@python, eric.araujo, rhettinger
Date 2011-01-12.10:29:44
SpamBayes Score 1.8258328e-06
Marked as misclassified No
Message-id <1294828188.31.0.578827978132.issue10891@psf.upfronthosting.co.za>
In-reply-to
Content
When reading over the sorting howto, I noticed redundancy of the form “the list.sort() method of a list”.  Raymond, if you approve the attached patch, please assign back to me.  There were no warnings during doc build and no link was broken.

Note that :meth:`list.sort` (or :meth:`~list.sort`) does not trigger a link to the doc of the method, since sort is not marked up with a method directive but listed in a table alongside other list and bytearray methods (http://docs.python.org/dev/library/stdtypes#typesseq-mutable).  This table is preceded by index-generating markup, but it does not create a target for :meth:`list.sort`; that’s a separate issue.  Until it’s solved, the sorting howto could turn the first occurrence of “list” into a link to the right section, using :ref:`typesseq-mutable <list>`, or continue to live without a link to list or list.sort.
History
Date User Action Args
2011-01-12 10:29:48eric.araujosetrecipients: + eric.araujo, rhettinger, docs@python
2011-01-12 10:29:48eric.araujosetmessageid: <1294828188.31.0.578827978132.issue10891@psf.upfronthosting.co.za>
2011-01-12 10:29:44eric.araujolinkissue10891 messages
2011-01-12 10:29:44eric.araujocreate