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: Wrong method signature in python Documentation
Type: Stage: resolved
Components: Documentation Versions: Python 3.10, Python 3.9, Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: ZackerySpytz, asvetlov, docs@python, lotus_chuan, miss-islington, ned.deily, ronaldoussoren
Priority: normal Keywords: patch

Created on 2020-11-28 08:03 by lotus_chuan, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 23538 merged ZackerySpytz, 2020-11-28 11:57
PR 23541 merged miss-islington, 2020-11-28 14:53
PR 23542 merged miss-islington, 2020-11-28 14:54
Messages (4)
msg381984 - (view) Author: Chuan Lotus (lotus_chuan) Date: 2020-11-28 08:03
In python 3.9.1 documentation tutorial 5.1,the method list.sort(key=None, reverse=False) lacks '*' before 'key=None', which may be confused.
msg382005 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2020-11-28 14:53
New changeset d41ec65ab7411e877ca33d05e8c900feca530635 by Zackery Spytz in branch 'master':
bpo-42489: Fix the signature for list.sort() in the tutorial (GH-23538)
https://github.com/python/cpython/commit/d41ec65ab7411e877ca33d05e8c900feca530635
msg382007 - (view) Author: miss-islington (miss-islington) Date: 2020-11-28 15:02
New changeset e1c669b7ed18a81bfaa349726424ff5de9485f0a by Miss Islington (bot) in branch '3.8':
bpo-42489: Fix the signature for list.sort() in the tutorial (GH-23538)
https://github.com/python/cpython/commit/e1c669b7ed18a81bfaa349726424ff5de9485f0a
msg382009 - (view) Author: miss-islington (miss-islington) Date: 2020-11-28 15:14
New changeset cc5eb935c79bae13def91965e5fb7e8346d9dea1 by Miss Islington (bot) in branch '3.9':
bpo-42489: Fix the signature for list.sort() in the tutorial (GH-23538)
https://github.com/python/cpython/commit/cc5eb935c79bae13def91965e5fb7e8346d9dea1
History
Date User Action Args
2022-04-11 14:59:38adminsetgithub: 86655
2020-11-28 15:23:49asvetlovsetstatus: open -> closed
assignee: docs@python
components: + Documentation, - macOS
versions: + Python 3.8, Python 3.10
nosy: + docs@python

resolution: fixed
stage: patch review -> resolved
2020-11-28 15:14:28miss-islingtonsetmessages: + msg382009
2020-11-28 15:02:37miss-islingtonsetmessages: + msg382007
2020-11-28 14:54:00miss-islingtonsetpull_requests: + pull_request22424
2020-11-28 14:53:52miss-islingtonsetnosy: + miss-islington
pull_requests: + pull_request22423
2020-11-28 14:53:47asvetlovsetnosy: + asvetlov
messages: + msg382005
2020-11-28 11:57:59ZackerySpytzsetkeywords: + patch
nosy: + ZackerySpytz

pull_requests: + pull_request22420
stage: patch review
2020-11-28 08:03:53lotus_chuancreate