diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2014-12-10 23:38:07 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2014-12-10 23:38:07 (GMT) |
commit | f0f09b947002bda07a23a35dfa2f00dc29e3cdd7 (patch) | |
tree | f4d68049d1a6fcf4e71a5b0fe3ffff650a4b6067 /Misc | |
parent | e6b42438fa53f7bcadc12bdcfa491b99f280f115 (diff) | |
download | cpython-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/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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. |