Skip to content

Commit 8728800

Browse files
nineteendonoahbkim
authored andcommitted
Amend categories of @nineteendo's news entries (python#120735)
1 parent 2cced16 commit 8728800

4 files changed

+93
-93
lines changed

Misc/NEWS.d/3.13.0a6.rst

+56-56
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,7 @@
1-
.. date: 2024-04-08-20-26-15
2-
.. gh-issue: 117648
3-
.. nonce: NzVEa7
4-
.. release date: 2024-04-09
5-
.. section: Core and Builtins
6-
7-
Improve performance of :func:`os.path.join` and :func:`os.path.expanduser`.
8-
9-
..
10-
11-
.. date: 2024-04-06-16-42-34
12-
.. gh-issue: 117584
13-
.. nonce: hqk9Hn
14-
.. section: Core and Builtins
15-
16-
Raise :exc:`TypeError` for non-paths in :func:`posixpath.relpath()`.
17-
18-
..
19-
201
.. date: 2024-04-04-13-42-59
212
.. gh-issue: 117494
223
.. nonce: GPQH64
4+
.. release date: 2024-04-09
235
.. section: Core and Builtins
246
257
Refactored the instruction sequence data structure out of compile.c into
@@ -97,33 +79,6 @@ Grigoryev Semyon
9779

9880
..
9981
100-
.. date: 2024-03-29-21-43-19
101-
.. gh-issue: 117381
102-
.. nonce: fT0JFM
103-
.. section: Core and Builtins
104-
105-
Fix error message for :func:`ntpath.commonpath`.
106-
107-
..
108-
109-
.. date: 2024-03-29-15-04-13
110-
.. gh-issue: 117349
111-
.. nonce: OB9kQQ
112-
.. section: Core and Builtins
113-
114-
Optimise several functions in :mod:`os.path`.
115-
116-
..
117-
118-
.. date: 2024-03-28-19-13-20
119-
.. gh-issue: 117335
120-
.. nonce: d6uKJu
121-
.. section: Core and Builtins
122-
123-
Raise TypeError for non-sequences for :func:`ntpath.commonpath`.
124-
125-
..
126-
12782
.. date: 2024-03-26-17-22-38
12883
.. gh-issue: 117266
12984
.. nonce: Kwh79O
@@ -170,16 +125,6 @@ up with growing heaps.
170125

171126
..
172127
173-
.. date: 2024-03-21-09-57-57
174-
.. gh-issue: 117114
175-
.. nonce: Qu-p55
176-
.. section: Core and Builtins
177-
178-
Make :func:`os.path.isdevdrive` available on all platforms. For those that
179-
do not offer Dev Drives, it will always return ``False``.
180-
181-
..
182-
183128
.. date: 2024-03-13-16-55-25
184129
.. gh-issue: 116735
185130
.. nonce: o3w6y8
@@ -305,6 +250,24 @@ operator. Patch by Pablo Galindo
305250

306251
..
307252
253+
.. date: 2024-04-08-20-26-15
254+
.. gh-issue: 117648
255+
.. nonce: NzVEa7
256+
.. section: Library
257+
258+
Improve performance of :func:`os.path.join` and :func:`os.path.expanduser`.
259+
260+
..
261+
262+
.. date: 2024-04-06-16-42-34
263+
.. gh-issue: 117584
264+
.. nonce: hqk9Hn
265+
.. section: Library
266+
267+
Raise :exc:`TypeError` for non-paths in :func:`posixpath.relpath()`.
268+
269+
..
270+
308271
.. date: 2024-04-03-18-36-53
309272
.. gh-issue: 117467
310273
.. nonce: l6rWlj
@@ -336,6 +299,15 @@ which can happen on Linux >= 2.6.36 with glibc < 2.27.
336299

337300
..
338301
302+
.. date: 2024-03-29-21-43-19
303+
.. gh-issue: 117381
304+
.. nonce: fT0JFM
305+
.. section: Library
306+
307+
Fix error message for :func:`ntpath.commonpath`.
308+
309+
..
310+
339311
.. date: 2024-03-29-15-58-01
340312
.. gh-issue: 117337
341313
.. nonce: 7w3Qwp
@@ -347,6 +319,15 @@ argument instead.
347319

348320
..
349321
322+
.. date: 2024-03-29-15-04-13
323+
.. gh-issue: 117349
324+
.. nonce: OB9kQQ
325+
.. section: Library
326+
327+
Optimise several functions in :mod:`os.path`.
328+
329+
..
330+
350331
.. date: 2024-03-29-12-07-26
351332
.. gh-issue: 117348
352333
.. nonce: WjCYvK
@@ -357,6 +338,15 @@ complexity and improve comprehensibility.
357338

358339
..
359340
341+
.. date: 2024-03-28-19-13-20
342+
.. gh-issue: 117335
343+
.. nonce: d6uKJu
344+
.. section: Library
345+
346+
Raise TypeError for non-sequences for :func:`ntpath.commonpath`.
347+
348+
..
349+
360350
.. date: 2024-03-28-17-55-22
361351
.. gh-issue: 66449
362352
.. nonce: 4jhuEV
@@ -470,6 +460,16 @@ backslashes on Windows.
470460

471461
..
472462
463+
.. date: 2024-03-21-09-57-57
464+
.. gh-issue: 117114
465+
.. nonce: Qu-p55
466+
.. section: Library
467+
468+
Make :func:`os.path.isdevdrive` available on all platforms. For those that
469+
do not offer Dev Drives, it will always return ``False``.
470+
471+
..
472+
473473
.. date: 2024-03-21-07-27-36
474474
.. gh-issue: 117110
475475
.. nonce: 9K1InX

Misc/NEWS.d/3.13.0b1.rst

+37-37
Original file line numberDiff line numberDiff line change
@@ -295,16 +295,6 @@ Improve :exc:`SyntaxError` message for empty type param brackets.
295295

296296
..
297297
298-
.. date: 2024-04-19-08-50-48
299-
.. gh-issue: 102511
300-
.. nonce: qDEB66
301-
.. section: Core and Builtins
302-
303-
Fix :func:`os.path.normpath` for UNC paths on Windows.
304-
Speed up :func:`os.path.splitroot` with a native implementation.
305-
306-
..
307-
308298
.. date: 2024-04-18-03-49-41
309299
.. gh-issue: 117958
310300
.. nonce: -EsfUs
@@ -450,33 +440,6 @@ as such regardless of whether they are in extension modules or not.
450440

451441
..
452442
453-
.. date: 2024-04-08-19-30-38
454-
.. gh-issue: 117641
455-
.. nonce: oaBGSJ
456-
.. section: Core and Builtins
457-
458-
Speedup :func:`os.path.commonpath` on Unix.
459-
460-
..
461-
462-
.. date: 2024-04-08-14-33-38
463-
.. gh-issue: 117636
464-
.. nonce: exnRKd
465-
.. section: Core and Builtins
466-
467-
Speedup :func:`os.path.join`.
468-
469-
..
470-
471-
.. date: 2024-04-07-18-42-09
472-
.. gh-issue: 117607
473-
.. nonce: C978BD
474-
.. section: Core and Builtins
475-
476-
Speedup :func:`os.path.relpath`.
477-
478-
..
479-
480443
.. date: 2024-03-30-00-37-53
481444
.. gh-issue: 117385
482445
.. nonce: h0OJti
@@ -836,6 +799,16 @@ big or offset too far.
836799

837800
..
838801
802+
.. date: 2024-04-19-08-50-48
803+
.. gh-issue: 102511
804+
.. nonce: qDEB66
805+
.. section: Library
806+
807+
Fix :func:`os.path.normpath` for UNC paths on Windows.
808+
Speed up :func:`os.path.splitroot` with a native implementation.
809+
810+
..
811+
839812
.. date: 2024-04-18-00-35-11
840813
.. gh-issue: 117535
841814
.. nonce: 0m6SIM
@@ -1005,6 +978,15 @@ dataclasses.
1005978

1006979
..
1007980
981+
.. date: 2024-04-08-19-30-38
982+
.. gh-issue: 117641
983+
.. nonce: oaBGSJ
984+
.. section: Library
985+
986+
Speedup :func:`os.path.commonpath` on Unix.
987+
988+
..
989+
1008990
.. date: 2024-04-08-19-12-26
1009991
.. gh-issue: 117663
1010992
.. nonce: CPfc_p
@@ -1015,6 +997,15 @@ but only one is the member value.
1015997

1016998
..
1017999
1000+
.. date: 2024-04-08-14-33-38
1001+
.. gh-issue: 117636
1002+
.. nonce: exnRKd
1003+
.. section: Library
1004+
1005+
Speedup :func:`os.path.join`.
1006+
1007+
..
1008+
10181009
.. date: 2024-04-08-03-23-22
10191010
.. gh-issue: 117618
10201011
.. nonce: -4DCUw
@@ -1038,6 +1029,15 @@ The old constants are preserved for backwards compatibility.
10381029

10391030
..
10401031
1032+
.. date: 2024-04-07-18-42-09
1033+
.. gh-issue: 117607
1034+
.. nonce: C978BD
1035+
.. section: Library
1036+
1037+
Speedup :func:`os.path.relpath`.
1038+
1039+
..
1040+
10411041
.. date: 2024-04-06-20-31-09
10421042
.. gh-issue: 117586
10431043
.. nonce: UgWdRK

0 commit comments

Comments
 (0)