Skip to content

Commit c770613

Browse files
committed
Move the What's New entry
Document frozendict after lazy import.
1 parent 8d4ed14 commit c770613

File tree

1 file changed

+17
-16
lines changed

1 file changed

+17
-16
lines changed

Doc/whatsnew/3.15.rst

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,10 @@ Summary -- Release highlights
6565
6666
.. PEP-sized items next.
6767
68-
* :pep:`814`: :ref:`Add frozendict built-in type
69-
<whatsnew315-pep814>`
7068
* :pep:`810`: :ref:`Explicit lazy imports for faster startup times
7169
<whatsnew315-pep810>`
70+
* :pep:`814`: :ref:`Add frozendict built-in type
71+
<whatsnew315-pep814>`
7272
* :pep:`799`: :ref:`A dedicated profiling package for organizing Python
7373
profiling tools <whatsnew315-profiling-package>`
7474
* :pep:`799`: :ref:`Tachyon: High frequency statistical sampling profiler
@@ -86,20 +86,6 @@ Summary -- Release highlights
8686
New features
8787
============
8888

89-
.. _whatsnew315-pep814:
90-
91-
:pep:`814`: Add frozendict built-in type
92-
----------------------------------------
93-
94-
A new public immutable type :class:`frozendict` is added to the :mod:`builtins`
95-
module. It is not a ``dict`` subclass but inherits directly from ``object``.
96-
97-
A ``frozendict`` can be hashed with ``hash(frozendict)`` if all keys and values
98-
can be hashed.
99-
100-
.. seealso:: :pep:`814` for the full specification and rationale.
101-
102-
10389
.. _whatsnew315-pep810:
10490

10591
:pep:`810`: Explicit lazy imports
@@ -196,6 +182,21 @@ raise :exc:`SyntaxError`).
196182

197183
(Contributed by Pablo Galindo Salgado and Dino Viehland in :gh:`142349`.)
198184

185+
186+
.. _whatsnew315-pep814:
187+
188+
:pep:`814`: Add frozendict built-in type
189+
----------------------------------------
190+
191+
A new public immutable type :class:`frozendict` is added to the :mod:`builtins`
192+
module. It is not a ``dict`` subclass but inherits directly from ``object``.
193+
194+
A ``frozendict`` can be hashed with ``hash(frozendict)`` if all keys and values
195+
can be hashed.
196+
197+
.. seealso:: :pep:`814` for the full specification and rationale.
198+
199+
199200
.. _whatsnew315-profiling-package:
200201

201202
:pep:`799`: A dedicated profiling package

0 commit comments

Comments
 (0)