summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2014-12-10 23:38:19 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2014-12-10 23:38:19 (GMT)
commitb67f6e27e11264876e185cacd8ebabbf41c27fb0 (patch)
tree81a68598278f8028899a53e97f2012ab528c3735 /Misc/NEWS
parent60599525c509a962e8fb5897240d42a56c092961 (diff)
downloadcpython-b67f6e27e11264876e185cacd8ebabbf41c27fb0.zip
cpython-b67f6e27e11264876e185cacd8ebabbf41c27fb0.tar.gz
cpython-b67f6e27e11264876e185cacd8ebabbf41c27fb0.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.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d4cd62e..8a6fd24 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -9474,6 +9474,10 @@ C-API
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.
+
- Issue #13989: Document that GzipFile does not support text mode, and give a
more helpful error message when opened with an invalid mode string.