Skip to content

Commit c844f6d

Browse files
committed
Move misplaced NEWS entries to an appropriate section
1 parent 50ecd6b commit c844f6d

File tree

11 files changed

+59
-59
lines changed

11 files changed

+59
-59
lines changed

Misc/NEWS.d/3.12.0a1.rst

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ to calculate those doing pointer arithmetic.
160160
.. date: 2022-10-06-15-45-57
161161
.. gh-issue: 96078
162162
.. nonce: fS-6mU
163-
.. section: Core and Builtins
163+
.. section: Library
164164
165165
:func:`os.sched_yield` now release the GIL while calling sched_yield(2).
166166
Patch by Donghee Na.
@@ -170,7 +170,7 @@ Patch by Donghee Na.
170170
.. date: 2022-10-06-14-14-28
171171
.. gh-issue: 97955
172172
.. nonce: Nq5VXD
173-
.. section: Core and Builtins
173+
.. section: Library
174174
175175
Migrate :mod:`zoneinfo` to Argument Clinic.
176176

@@ -223,7 +223,7 @@ chance to execute the GC periodically.
223223
.. date: 2022-10-05-00-37-27
224224
.. gh-issue: 65961
225225
.. nonce: z0Ys0y
226-
.. section: Core and Builtins
226+
.. section: Library
227227
228228
When ``__package__`` is different than ``__spec__.parent``, raise a
229229
``DeprecationWarning`` instead of ``ImportWarning``.
@@ -245,7 +245,7 @@ Long deprecated, ``module_repr()`` should now be completely eradicated.
245245
.. date: 2022-10-04-14-04-40
246246
.. gh-issue: 86298
247247
.. nonce: QVM7G1
248-
.. section: Core and Builtins
248+
.. section: Library
249249
250250
In cases where ``warnings.warn_explicit()`` consults the module's loader, an
251251
``DeprecationWarning`` is issued when ``m.__loader__`` differs from
@@ -361,7 +361,7 @@ branching conditions.
361361
.. date: 2022-09-19-03-35-01
362362
.. gh-issue: 96821
363363
.. nonce: izK6JA
364-
.. section: Core and Builtins
364+
.. section: Library
365365
366366
Fix undefined behaviour in ``audioop.c``.
367367

@@ -481,7 +481,7 @@ Fix case of undefined behavior in ceval.c
481481
.. date: 2022-09-08-20-58-10
482482
.. gh-issue: 64373
483483
.. nonce: AfCi36
484-
.. section: Core and Builtins
484+
.. section: Library
485485
486486
Convert :mod:`!_functools` to argument clinic.
487487

@@ -490,7 +490,7 @@ Convert :mod:`!_functools` to argument clinic.
490490
.. date: 2022-09-07-13-38-37
491491
.. gh-issue: 96641
492492
.. nonce: wky0Fc
493-
.. section: Core and Builtins
493+
.. section: Library
494494
495495
Do not expose ``KeyWrapper`` in :mod:`!_functools`.
496496

@@ -924,7 +924,7 @@ constructed without an instance of the compiler struct.
924924
.. date: 2022-07-24-00-27-47
925925
.. gh-issue: 95185
926926
.. nonce: ghYTZx
927-
.. section: Core and Builtins
927+
.. section: Library
928928
929929
Prevented crashes in the AST constructor when compiling some absurdly long
930930
expressions like ``"+0"*1000000``. :exc:`RecursionError` is now raised
@@ -935,7 +935,7 @@ instead. Patch by Pablo Galindo
935935
.. date: 2022-07-23-19-16-25
936936
.. gh-issue: 93351
937937
.. nonce: 0Jyvu-
938-
.. section: Core and Builtins
938+
.. section: Library
939939
940940
:class:`ast.AST` node positions are now validated when provided to
941941
:func:`compile` and other related functions. If invalid positions are
@@ -990,7 +990,7 @@ bytecode compiler.
990990
.. date: 2022-07-20-09-04-55
991991
.. gh-issue: 95023
992992
.. nonce: bs-xd7
993-
.. section: Core and Builtins
993+
.. section: Library
994994
995995
Implement :func:`os.setns` and :func:`os.unshare` for Linux. Patch by Noam
996996
Cohen.
@@ -1021,7 +1021,7 @@ Previously it could cause SystemError or other undesired behavior.
10211021
.. date: 2022-07-19-04-34-56
10221022
.. gh-issue: 94996
10231023
.. nonce: dV564A
1024-
.. section: Core and Builtins
1024+
.. section: Library
10251025
10261026
:func:`ast.parse` will no longer parse function definitions with
10271027
positional-only params when passed ``feature_version`` less than ``(3, 8)``.
@@ -1041,7 +1041,7 @@ Allow jumping within, out of, and across exception handlers in the debugger.
10411041
.. date: 2022-07-18-05-10-29
10421042
.. gh-issue: 94949
10431043
.. nonce: OsZ7_s
1044-
.. section: Core and Builtins
1044+
.. section: Library
10451045
10461046
:func:`ast.parse` will no longer parse parenthesized context managers when
10471047
passed ``feature_version`` less than ``(3, 9)``. Patch by Shantanu Jain.
@@ -1051,7 +1051,7 @@ passed ``feature_version`` less than ``(3, 9)``. Patch by Shantanu Jain.
10511051
.. date: 2022-07-18-04-48-34
10521052
.. gh-issue: 94947
10531053
.. nonce: df9gUw
1054-
.. section: Core and Builtins
1054+
.. section: Library
10551055
10561056
:func:`ast.parse` will no longer parse assignment expressions when passed
10571057
``feature_version`` less than ``(3, 8)``. Patch by Shantanu Jain.
@@ -1070,7 +1070,7 @@ Ensures the program name is known for help text during interpreter startup.
10701070
.. date: 2022-07-16-08-14-17
10711071
.. gh-issue: 94869
10721072
.. nonce: eRwMsX
1073-
.. section: Core and Builtins
1073+
.. section: Library
10741074
10751075
Fix the column offsets for some expressions in multi-line f-strings
10761076
:mod:`ast` nodes. Patch by Pablo Galindo.
@@ -1394,7 +1394,7 @@ calls. Previously, the end column could precede the column offset.
13941394
.. date: 2022-06-09-19-19-02
13951395
.. gh-issue: 93461
13961396
.. nonce: 5DqP1e
1397-
.. section: Core and Builtins
1397+
.. section: Library
13981398
13991399
:func:`importlib.invalidate_caches` now drops entries from
14001400
:data:`sys.path_importer_cache` with a relative path as name. This solves a
@@ -1469,7 +1469,7 @@ lookup of the :attr:`~types.CodeType.co_code` attribute.
14691469
.. date: 2022-05-30-19-00-38
14701470
.. gh-issue: 93359
14711471
.. nonce: zXV3A0
1472-
.. section: Core and Builtins
1472+
.. section: Library
14731473
14741474
Ensure that custom :mod:`ast` nodes without explicit end positions can be
14751475
compiled. Patch by Pablo Galindo.
@@ -1642,7 +1642,7 @@ not finalized at exit. Patch by Kumar Aditya.
16421642
.. date: 2022-05-18-18-34-45
16431643
.. gh-issue: 92930
16441644
.. nonce: kpYPOb
1645-
.. section: Core and Builtins
1645+
.. section: Library
16461646
16471647
Fixed a crash in ``_pickle.c`` from mutating collections during
16481648
``__reduce__`` or ``persistent_id``.
@@ -1709,7 +1709,7 @@ Jin.
17091709
.. date: 2022-05-13-00-57-18
17101710
.. gh-issue: 92658
17111711
.. nonce: YdhFE2
1712-
.. section: Core and Builtins
1712+
.. section: Library
17131713
17141714
Add support for connecting and binding to Hyper-V sockets on Windows Hyper-V
17151715
hosts and guests.
@@ -1729,7 +1729,7 @@ tracing functions implemented in C.
17291729
.. date: 2022-05-11-09-16-54
17301730
.. gh-issue: 91102
17311731
.. nonce: lenv9h
1732-
.. section: Core and Builtins
1732+
.. section: Library
17331733
17341734
:meth:`!_warnings.warn_explicit` is ported to Argument Clinic.
17351735

@@ -1759,7 +1759,7 @@ no longer does anything.
17591759
.. date: 2022-05-03-20-12-18
17601760
.. gh-issue: 92261
17611761
.. nonce: aigLnb
1762-
.. section: Core and Builtins
1762+
.. section: Library
17631763
17641764
Fix hang when trying to iterate over a ``typing.Union``.
17651765

Misc/NEWS.d/3.12.0a2.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ back to alternative names ("python<MAJOR>", "python<MAJOR>.<MINOR>").
108108
.. date: 2022-11-06-22-59-02
109109
.. gh-issue: 96055
110110
.. nonce: TmQuJn
111-
.. section: Core and Builtins
111+
.. section: Library
112112
113113
Update :mod:`faulthandler` to emit an error message with the proper
114114
unexpected signal number. Patch by Donghee Na.
@@ -333,7 +333,7 @@ aware of this shim frame and the changes to the semantics of
333333
.. date: 2022-10-19-01-01-08
334334
.. gh-issue: 98415
335335
.. nonce: ZS2eWh
336-
.. section: Core and Builtins
336+
.. section: Library
337337
338338
Fix detection of MAC addresses for :mod:`uuid` on certain OSs. Patch by
339339
Chaim Sanders
@@ -353,7 +353,7 @@ aggressively.
353353
.. date: 2022-10-15-23-15-14
354354
.. gh-issue: 92119
355355
.. nonce: PMSwwG
356-
.. section: Core and Builtins
356+
.. section: Library
357357
358358
Print exception class name instead of its string representation when raising
359359
errors from :mod:`ctypes` calls.
@@ -395,7 +395,7 @@ longobject.c to speed up some operations.
395395
.. date: 2022-07-30-14-10-27
396396
.. gh-issue: 95389
397397
.. nonce: nSGEkG
398-
.. section: Core and Builtins
398+
.. section: Library
399399
400400
Expose :const:`~socket.ETH_P_ALL` and some of the :ref:`ETHERTYPE_* constants
401401
<socket-ethernet-types>` in :mod:`socket`. Patch by Noam Cohen.
@@ -405,7 +405,7 @@ Expose :const:`~socket.ETH_P_ALL` and some of the :ref:`ETHERTYPE_* constants
405405
.. date: 2022-06-10-16-37-44
406406
.. gh-issue: 93696
407407
.. nonce: 65BI2R
408-
.. section: Core and Builtins
408+
.. section: Library
409409
410410
Allow :mod:`pdb` to locate source for frozen modules in the standard
411411
library.

Misc/NEWS.d/3.12.0a3.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Fix bug where an :exc:`ExceptionGroup` subclass can wrap a
100100
.. date: 2022-11-16-21-35-30
101101
.. gh-issue: 99547
102102
.. nonce: p_c_bp
103-
.. section: Core and Builtins
103+
.. section: Library
104104
105105
Add a function to os.path to check if a path is a junction: isjunction. Add
106106
similar functionality to pathlib.Path as is_junction.
@@ -110,7 +110,7 @@ similar functionality to pathlib.Path as is_junction.
110110
.. date: 2022-11-12-01-39-57
111111
.. gh-issue: 99370
112112
.. nonce: _cu32j
113-
.. section: Core and Builtins
113+
.. section: Library
114114
115115
Fix zip path for venv created from a non-installed python on POSIX
116116
platforms.
@@ -150,7 +150,7 @@ to specialize attribute accesses on types that haven't had
150150
.. date: 2022-11-05-22-26-35
151151
.. gh-issue: 99127
152152
.. nonce: Btk7ih
153-
.. section: Core and Builtins
153+
.. section: Library
154154
155155
Allow some features of :mod:`syslog` to the main interpreter only. Patch by
156156
Donghee Na.
@@ -196,7 +196,7 @@ unpickling.
196196
.. bpo: 31718
197197
.. date: 2020-02-23-23-48-15
198198
.. nonce: sXko5e
199-
.. section: Core and Builtins
199+
.. section: Library
200200
201201
Raise :exc:`ValueError` instead of :exc:`SystemError` when methods of
202202
uninitialized :class:`io.IncrementalNewlineDecoder` objects are called.
@@ -207,7 +207,7 @@ Patch by Oren Milman.
207207
.. bpo: 38031
208208
.. date: 2019-09-04-19-09-49
209209
.. nonce: Yq4L72
210-
.. section: Core and Builtins
210+
.. section: Library
211211
212212
Fix a possible assertion failure in :class:`io.FileIO` when the opener
213213
returns an invalid file descriptor.

Misc/NEWS.d/3.12.0a4.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ Improve the accuracy of ``sum()`` with compensated summation.
125125
.. date: 2022-12-20-16-14-19
126126
.. gh-issue: 100374
127127
.. nonce: YRrVHT
128-
.. section: Core and Builtins
128+
.. section: Library
129129
130130
Fix incorrect result and delay in :func:`socket.getfqdn`. Patch by Dominic
131131
Socular.
@@ -315,7 +315,7 @@ Improve performance of ``list.pop`` for small lists.
315315
.. date: 2022-06-17-08-00-34
316316
.. gh-issue: 89051
317317
.. nonce: yP4Na0
318-
.. section: Core and Builtins
318+
.. section: Library
319319
320320
Add :const:`ssl.OP_LEGACY_SERVER_CONNECT`
321321

@@ -324,7 +324,7 @@ Add :const:`ssl.OP_LEGACY_SERVER_CONNECT`
324324
.. bpo: 32782
325325
.. date: 2018-02-06-23-21-13
326326
.. nonce: EJVSfR
327-
.. section: Core and Builtins
327+
.. section: Library
328328
329329
``ctypes`` arrays of length 0 now report a correct itemsize when a
330330
``memoryview`` is constructed from them, rather than always giving a value

Misc/NEWS.d/3.12.0a5.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Fix wrong lineno in exception message on :keyword:`continue` or
4545
.. date: 2023-01-28-20-31-42
4646
.. gh-issue: 101372
4747
.. nonce: 8BcpCC
48-
.. section: Core and Builtins
48+
.. section: Library
4949
5050
Fix :func:`~unicodedata.is_normalized` to properly handle the UCD 3.2.0
5151
cases. Patch by Donghee Na.
@@ -138,7 +138,7 @@ embed the mask into the oparg.
138138
.. date: 2023-01-10-14-11-17
139139
.. gh-issue: 100892
140140
.. nonce: qfBVYI
141-
.. section: Core and Builtins
141+
.. section: Library
142142
143143
Fix race while iterating over thread states in clearing
144144
:class:`threading.local`. Patch by Kumar Aditya.
@@ -181,7 +181,7 @@ regen-all``.
181181
.. bpo: 32780
182182
.. date: 2018-02-05-21-54-46
183183
.. nonce: Dtiz8z
184-
.. section: Core and Builtins
184+
.. section: Library
185185
186186
Inter-field padding is now inserted into the PEP3118 format strings obtained
187187
from :class:`ctypes.Structure` objects, reflecting their true representation

Misc/NEWS.d/3.12.0a6.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ Fix possible segfault in ``BUILD_SET`` opcode, when new set created.
154154
.. date: 2023-02-13-22-21-58
155155
.. gh-issue: 74895
156156
.. nonce: esMNtq
157-
.. section: Core and Builtins
157+
.. section: Library
158158
159159
:mod:`socket.getaddrinfo` no longer raises :class:`OverflowError` for
160160
:class:`int` **port** values outside of the C long range. Out of range
@@ -217,7 +217,7 @@ access of ``builtins.__dict__`` keys mutates the iter object.
217217
.. date: 2023-02-10-01-15-57
218218
.. gh-issue: 101430
219219
.. nonce: T3Gegb
220-
.. section: Core and Builtins
220+
.. section: Library
221221
222222
Update :mod:`tracemalloc` to handle presize of object properly. Patch by
223223
Donghee Na.

Misc/NEWS.d/3.12.0a7.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Shrink the number of inline :opcode:`CACHE` entries used by
102102
.. date: 2023-03-08-08-37-36
103103
.. gh-issue: 102491
104104
.. nonce: SFvvsC
105-
.. section: Core and Builtins
105+
.. section: Library
106106
107107
Improve import time of ``platform`` by removing IronPython version parsing.
108108
The IronPython version parsing was not functional (see
@@ -138,7 +138,7 @@ collection. Patch by Kumar Aditya.
138138
.. date: 2023-03-03-23-21-16
139139
.. gh-issue: 102406
140140
.. nonce: XLqYO3
141-
.. section: Core and Builtins
141+
.. section: Library
142142
143143
:mod:`codecs` encoding/decoding errors now get the context information
144144
(which operation and which codecs) attached as :pep:`678` notes instead of
@@ -187,7 +187,7 @@ Improve build support for the Xbox. Patch by Max Bachmann.
187187
.. date: 2023-02-21-23-42-39
188188
.. gh-issue: 102027
189189
.. nonce: fQARG0
190-
.. section: Core and Builtins
190+
.. section: Library
191191
192192
Fix SSE2 and SSE3 detection in ``_blake2`` internal module. Patch by Max
193193
Bachmann.
@@ -207,7 +207,7 @@ Deprecate ``co_lnotab`` in code objects, schedule it for removal in Python
207207
.. bpo: 1635741
208208
.. date: 2020-07-04-09-04-41
209209
.. nonce: ZsP31Y
210-
.. section: Core and Builtins
210+
.. section: Library
211211
212212
Adapt :mod:`!_pickle` to :pep:`687`. Patch by Mohamed Koubaa and Erlend
213213
Aasland.

0 commit comments

Comments
 (0)