Skip to content

Commit c8600b9

Browse files
committed
Move whatsnew section.
1 parent fdeb2d0 commit c8600b9

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

Doc/whatsnew/3.15.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -226,13 +226,6 @@ os.path
226226
(Contributed by Petr Viktorin for :cve:`2025-4517`.)
227227

228228

229-
types
230-
------
231-
232-
* Added :data:`types.FrameLocalsProxyType` for representing the type of
233-
the :attr:`frame.f_locals` attribute, as determined in :pep:`667`.
234-
235-
236229
shelve
237230
------
238231

@@ -285,6 +278,13 @@ tarfile
285278
and :cve:`2025-4435`.)
286279

287280

281+
types
282+
------
283+
284+
* Added :data:`types.FrameLocalsProxyType` for representing the type of
285+
the :attr:`frame.f_locals` attribute, as determined in :pep:`667`.
286+
287+
288288
zlib
289289
----
290290

Lib/test/test_inspect/test_inspect.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5786,6 +5786,7 @@ def test_types_module_has_signatures(self):
57865786
'AsyncGeneratorType': {'athrow'},
57875787
'CoroutineType': {'throw'},
57885788
'GeneratorType': {'throw'},
5789+
'FrameLocalsProxyType': {'setdefault', 'pop'}
57895790
}
57905791
self._test_module_has_signatures(types,
57915792
unsupported_signature=unsupported_signature,

0 commit comments

Comments
 (0)