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: Add multisort recipe to sorting docs
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.8, Python 3.7, Python 3.6, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: rhettinger Nosy List: docs@python, rhettinger, tim.peters, xtreak
Priority: normal Keywords: patch

Created on 2018-10-18 17:13 by xtreak, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 9931 closed xtreak, 2018-10-18 17:14
>>" from testsetup.">PR 10017 merged benjamin.peterson, 2018-10-20 23:46
Messages (2)
msg327988 - (view) Author: Karthikeyan Singaravelan (xtreak) * (Python committer) Date: 2018-10-18 17:13
This issue handles the below : 

1. Adding a link to sorting HOWTO from list.sort docs as per msg327901
2. Adding multisort recipe to sorting HOWTO with an example as per msg327925.

I have raised a PR (GH-9931) for #1 but the issue35010 was closed and hence I will link to this issue. I would also suggest adding single pass sorting example

multisort recipe : https://mail.python.org/pipermail/python-ideas/2016-October/043045.html
single pass recipe : https://mail.python.org/pipermail/python-ideas/2016-October/043126.html

Since English is not my first language feedback welcome on the wording.

Thanks
msg328180 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2018-10-20 21:39
New changeset 890a4b92933be8e7c554222d99ef829c88fa8637 by Raymond Hettinger (Xtreak) in branch 'master':
bpo-35020: Link to sorting examples from list.sort() (GH-9931)
https://github.com/python/cpython/commit/890a4b92933be8e7c554222d99ef829c88fa8637
History
Date User Action Args
2022-04-11 14:59:07adminsetgithub: 79201
2018-10-20 23:46:09benjamin.petersonsetpull_requests: + pull_request9353
2018-10-20 21:40:18rhettingersetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2018-10-20 21:39:06rhettingersetmessages: + msg328180
2018-10-19 06:42:04serhiy.storchakasetnosy: + tim.peters
2018-10-19 06:41:00rhettingersetassignee: docs@python -> rhettinger

nosy: + rhettinger
2018-10-18 17:14:07xtreaksetkeywords: + patch
stage: patch review
pull_requests: + pull_request9302
2018-10-18 17:13:38xtreakcreate