We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df61c65 commit 857b491Copy full SHA for 857b491
Doc/whatsnew/3.15.rst
@@ -188,9 +188,9 @@ raise :exc:`SyntaxError`).
188
:pep:`814`: Add frozendict built-in type
189
----------------------------------------
190
191
-A new public immutable type, :class:`frozendict`, is added to the :mod:`builtins` module.
+A new :term:`immutable` type, :class:`frozendict`, is added to the :mod:`builtins` module.
192
It does not allow modification after creation. A ``frozendict`` is not a subclass of ``dict``;
193
-it inherits directly from ``object``. A ``frozendict`` is hashable (i.e., ``hash(frozendict)`` works)
+it inherits directly from ``object``. A ``frozendict`` is :term:`hashable`
194
as long as all of its keys and values are hashable.
195
196
For example::
0 commit comments