diff --git a/peps/pep-0814.rst b/peps/pep-0814.rst index d35cc8bbd80..36cfc0a7c85 100644 --- a/peps/pep-0814.rst +++ b/peps/pep-0814.rst @@ -1,6 +1,7 @@ PEP: 814 Title: Add frozendict built-in type Author: Victor Stinner , Donghee Na +Discussions-To: https://discuss.python.org/t/104854 Status: Draft Type: Standards Track Created: 12-Nov-2025 @@ -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