summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2014-12-10 23:38:07 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2014-12-10 23:38:07 (GMT)
commitf0f09b947002bda07a23a35dfa2f00dc29e3cdd7 (patch)
treef4d68049d1a6fcf4e71a5b0fe3ffff650a4b6067 /Misc
parente6b42438fa53f7bcadc12bdcfa491b99f280f115 (diff)
downloadcpython-f0f09b947002bda07a23a35dfa2f00dc29e3cdd7.zip
cpython-f0f09b947002bda07a23a35dfa2f00dc29e3cdd7.tar.gz
cpython-f0f09b947002bda07a23a35dfa2f00dc29e3cdd7.tar.bz2
Issue #23006: Improve the documentation and indexing of dict.__missing__.
Add an entry in the language datamodel special methods section. Revise and index its discussion in the stdtypes mapping/dict section. Backport the code example from 3.4.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6d0f3eb..6f4e552 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -30,6 +30,11 @@ Library
Documentation
-------------
+- Issue #23006: Improve the documentation and indexing of dict.__missing__.
+ Add an entry in the language datamodel special methods section.
+ Revise and index its discussion in the stdtypes mapping/dict section.
+ Backport the code example from 3.4.
+
- Issue #21514: The documentation of the json module now refers to new JSON RFC
7159 instead of obsoleted RFC 4627.