Issue #25286: Merge dictionary view glossary from 3.5
This commit is contained in:
commit
6568714366
|
@ -241,6 +241,14 @@ Glossary
|
|||
keys can be any object with :meth:`__hash__` and :meth:`__eq__` methods.
|
||||
Called a hash in Perl.
|
||||
|
||||
dictionary view
|
||||
The objects returned from :meth:`dict.keys`, :meth:`dict.values`, and
|
||||
:meth:`dict.items` are called dictionary views. They provide a dynamic
|
||||
view on the dictionary’s entries, which means that when the dictionary
|
||||
changes, the view reflects these changes. To force the
|
||||
dictionary view to become a full list use ``list(dictview)``. See
|
||||
:ref:`dict-views`.
|
||||
|
||||
docstring
|
||||
A string literal which appears as the first expression in a class,
|
||||
function or module. While ignored when the suite is executed, it is
|
||||
|
@ -934,13 +942,6 @@ Glossary
|
|||
``'\r'``. See :pep:`278` and :pep:`3116`, as well as
|
||||
:func:`bytes.splitlines` for an additional use.
|
||||
|
||||
view
|
||||
The objects returned from :meth:`dict.keys`, :meth:`dict.values`, and
|
||||
:meth:`dict.items` are called dictionary views. They are lazy sequences
|
||||
that will see changes in the underlying dictionary. To force the
|
||||
dictionary view to become a full list use ``list(dictview)``. See
|
||||
:ref:`dict-views`.
|
||||
|
||||
virtual environment
|
||||
A cooperatively isolated runtime environment that allows Python users
|
||||
and applications to install and upgrade Python distribution packages
|
||||
|
|
|
@ -150,7 +150,7 @@ ABC Inherits from Abstract Methods Mixin
|
|||
KeysView
|
||||
ValuesView
|
||||
|
||||
ABCs for mapping, items, keys, and values :term:`views <view>`.
|
||||
ABCs for mapping, items, keys, and values :term:`views <dictionary view>`.
|
||||
|
||||
.. class:: Awaitable
|
||||
|
||||
|
|
|
@ -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
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
|
Loading…
Reference in New Issue