diff options
author | Martin Panter <vadmium+py@gmail.com> | 2015-10-07 10:04:49 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2015-10-07 10:04:49 (GMT) |
commit | 6568714366e8c7c7222681a5ddcc13c57b7495a2 (patch) | |
tree | 36dbbc80f8b8612c801f4c5c5c60612cbfe601a9 /Doc/library/collections.rst | |
parent | 6f038ada5bd1bc2838e20f0b22de1780e7ce709d (diff) | |
parent | 397625e43280c1dec19af59c53704e0d95b557d5 (diff) | |
download | cpython-6568714366e8c7c7222681a5ddcc13c57b7495a2.zip cpython-6568714366e8c7c7222681a5ddcc13c57b7495a2.tar.gz cpython-6568714366e8c7c7222681a5ddcc13c57b7495a2.tar.bz2 |
Issue #25286: Merge dictionary view glossary from 3.5
Diffstat (limited to 'Doc/library/collections.rst')
-rw-r--r-- | Doc/library/collections.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index f820748..40809d9 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -1021,8 +1021,8 @@ keyword arguments, but their order is lost because Python's function call semantics pass-in keyword arguments using a regular unordered dictionary. .. versionchanged:: 3.5 - The items, keys, and values :term:`views <view>` of :class:`OrderedDict` now - support reverse iteration using :func:`reversed`. + The items, keys, and values :term:`views <dictionary view>` + of :class:`OrderedDict` now support reverse iteration using :func:`reversed`. :class:`OrderedDict` Examples and Recipes ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |