Skip to content
Merged
Changes from all commits
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
7 changes: 4 additions & 3 deletions peps/pep-0814.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
PEP: 814
Title: Add frozendict built-in type
Author: Victor Stinner <vstinner@python.org>, Donghee Na <donghee.na@python.org>
Discussions-To: https://discuss.python.org/t/104854
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also add Post-History after Python-Version:

Post-History: `13-Nov-2025 <https://discuss.python.org/t/104854>`__

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh ok. Will do in my next PR.

Status: Draft
Type: Standards Track
Created: 12-Nov-2025
Expand Down Expand Up @@ -279,10 +280,10 @@ Copy *O*\ (1) *O*\ (*n*)
Reference Implementation
========================

* The reference implementation is still a work-in-progress.
* https://github.com/python/cpython/pull/141508
* ``frozendict`` shares most of its code with the ``dict`` type.
* Add ``PyFrozenDictObject`` which inherits from ``PyDictObject`` and
has an additional ``ma_hash`` member.
* Add ``PyFrozenDictObject`` structure which inherits from
``PyDictObject`` and has an additional ``ma_hash`` member.


Thread Safety
Expand Down