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: Make docstring quotes consistent in Lib/_collections_abc.py
Type: enhancement Stage: resolved
Components: Library (Lib) Versions: Python 3.11, Python 3.10, Python 3.9, Python 3.8, Python 3.7, Python 3.6
process
Status: closed Resolution: rejected
Dependencies: Superseder:
Assigned To: Nosy List: kuzmovych, python-dev, rhettinger
Priority: normal Keywords: patch

Created on 2021-06-24 12:22 by kuzmovych, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 26897 closed python-dev, 2021-06-24 12:25
Messages (2)
msg396478 - (view) Author: Yevhen Kuzmovych (kuzmovych) * Date: 2021-06-24 12:22
The comment of `Mapping.get` method should state

'D.get(k[,d]) -> D[k] if k in D else d.  d defaults to None.'

instead of 

'D.get(k[,d]) -> D[k] if k in D, else d.  d defaults to None.' (note the comma before `else`.
msg396537 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2021-06-26 03:23
Marking as closed for the reasons listed in the PR comments.
History
Date User Action Args
2022-04-11 14:59:47adminsetgithub: 88670
2021-06-26 03:23:47rhettingersetstatus: open -> closed

nosy: + rhettinger
messages: + msg396537

resolution: rejected
stage: patch review -> resolved
2021-06-24 15:29:04kuzmovychsettitle: Make docstring quotes consistent in Lib -> Make docstring quotes consistent in Lib/_collections_abc.py
2021-06-24 14:16:44kuzmovychsettitle: Make docstring quotes consistent in Lib/_collections_abc.py -> Make docstring quotes consistent in Lib
2021-06-24 13:42:14kuzmovychsettitle: Typo in the docstring of Mapping.get method -> Make docstring quotes consistent in Lib/_collections_abc.py
2021-06-24 12:25:33python-devsetkeywords: + patch
nosy: + python-dev

pull_requests: + pull_request25473
stage: resolved -> patch review
2021-06-24 12:25:18kuzmovychsetstatus: closed -> open
2021-06-24 12:24:48kuzmovychsetstatus: open -> closed
stage: resolved
2021-06-24 12:22:21kuzmovychcreate