From c56bd99407fa37a383002a091f67d1eeba5e6df0 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Thu, 20 Nov 2025 18:18:17 +0100 Subject: [PATCH] PEP 814: Deferred Ideas --- peps/pep-0814.rst | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/peps/pep-0814.rst b/peps/pep-0814.rst index ce8470f0aa6..e6a2ad7d363 100644 --- a/peps/pep-0814.rst +++ b/peps/pep-0814.rst @@ -389,6 +389,9 @@ If ``frozendict`` does not inherit from ``dict``, there is no such issue. +Deferred Ideas +============== + New syntax for ``frozendict`` literals -------------------------------------- @@ -396,6 +399,15 @@ Various syntaxes have been proposed to write ``frozendict`` literals. A new syntax can be added later if needed. +Method to convert ``dict`` to ``frozendict`` +-------------------------------------------- + +Different methods have been proposed to convert a mutable ``dict`` to an +immutable ``frozendict`` with *O*\ (1) complexity. + +We consider that such method can be added later if needed, but it +doesn't have to be added right now. + References ==========