Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Document that frozendict is not a dict subclass
  • Loading branch information
vstinner committed Feb 13, 2026
commit 9101b1a432f7976795098071aa7e8bca9623ee5d
3 changes: 3 additions & 0 deletions Doc/library/stdtypes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5865,6 +5865,9 @@ An example of dictionary view usage::
* ``frozendict |= other`` does not modify the :class:`!frozendict` in-place but
creates a new frozen dictionary.

:class:`!frozendict` is not a :class:`!dict` subclass but inherits directly
from ``object``.

.. versionadded:: next


Expand Down
Loading