diff options
author | Martin Panter <vadmium+py@gmail.com> | 2015-10-07 10:03:20 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2015-10-07 10:03:20 (GMT) |
commit | 397625e43280c1dec19af59c53704e0d95b557d5 (patch) | |
tree | 7d60d7153f200ce4200f2be5ef59b2e8c1e2bcc6 /Doc/library | |
parent | 446977c080bc82f37b13d89f1de82cb1670caccf (diff) | |
download | cpython-397625e43280c1dec19af59c53704e0d95b557d5.zip cpython-397625e43280c1dec19af59c53704e0d95b557d5.tar.gz cpython-397625e43280c1dec19af59c53704e0d95b557d5.tar.bz2 |
Issue #25286: Update dictionary view link; patch by Akira Li
Diffstat (limited to 'Doc/library')
-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 8121cc4..15c13fa 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -1018,8 +1018,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 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |