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: Fix dict's __missing__ documentation
Type: enhancement Stage: patch review
Components: Documentation Versions: Python 3.9, Python 3.8, Python 3.7
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: docs@python Nosy List: bar.harel, docs@python
Priority: normal Keywords: patch

Created on 2020-01-09 00:06 by bar.harel, last changed 2022-04-11 14:59 by admin.

Pull Requests
URL Status Linked Edit
PR 17911 open bar.harel, 2020-01-09 00:12
Messages (1)
msg359639 - (view) Author: Bar Harel (bar.harel) * Date: 2020-01-09 00:06
Continuing bpo-39264, and according to the mailing list discussion at Python-Dev.
Fixing dict's __missing__ documentation. Clarify .get() does not call __missing__, and move __missing__ from the data model to dict's section as it's not a general object or ABC method but a dict-only implementation.
History
Date User Action Args
2022-04-11 14:59:25adminsetgithub: 83448
2020-01-09 00:12:16bar.harelsetkeywords: + patch
stage: patch review
pull_requests: + pull_request17322
2020-01-09 00:06:08bar.harelcreate