From e4599a6b4b2b48ae8bcd1004f809b1305e06123d Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Thu, 13 Nov 2025 14:31:46 +0100 Subject: [PATCH] PEP 814: Add Reference Impl. and Discussions-To --- peps/pep-0814.rst | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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