]>
git.ipfire.org Git - thirdparty/Python/cpython.git/log
Victor Stinner [Mon, 3 Feb 2025 12:00:10 +0000 (13:00 +0100)]
[3.12] gh-129539: Include sysexits.h before checking EX_OK (#129590) (#129609)
[3.13] gh-129539: Include sysexits.h before checking EX_OK (#129590)
Previously, the macro would be redefined when the header was included.
(cherry picked from commit
65f3432ac32f92bc3d8b7b11103a56c5a70049c0 )
Co-authored-by: Collin Funk <collin.funk1@gmail.com>
Miss Islington (bot) [Mon, 3 Feb 2025 11:54:16 +0000 (12:54 +0100)]
[3.12] gh-129407: Clarify that a `SystemError` isn't always CPython's fault (GH-129410) (#129611)
gh-129407: Clarify that a `SystemError` isn't always CPython's fault (GH-129410)
(cherry picked from commit
39b754a35976924f6df46cd475e889bcf8598ca1 )
Co-authored-by: Peter Bierma <zintensitydev@gmail.com>
Miss Islington (bot) [Sun, 2 Feb 2025 22:58:22 +0000 (23:58 +0100)]
[3.12] gh-127975: Avoid reusing quote types in ast.unparse if not needed (GH-127980) (#129601)
gh-127975: Avoid reusing quote types in ast.unparse if not needed (GH-127980)
(cherry picked from commit
8df5193d37f70a1478642c4b456dcc7d6df6c117 )
Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com>
Adam Turner [Sun, 2 Feb 2025 16:26:50 +0000 (16:26 +0000)]
[3.12] GH-121970: Extract ``misc_news`` into a new extension (GH-129577) (#129587)
(cherry picked from commit
ae4788809d674f8e27faef2678953be8cf67d4a3 )
Miss Islington (bot) [Sun, 2 Feb 2025 16:18:50 +0000 (17:18 +0100)]
[3.12] gh-126609: Allow translating the ``availability`` directive (GH-129549) (#129585)
gh-126609: Allow translating the ``availability`` directive (GH-129549)
(cherry picked from commit
0612a89ffcf0bb52b1750a3466671ba8daad1d87 )
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Miss Islington (bot) [Sun, 2 Feb 2025 15:47:37 +0000 (16:47 +0100)]
[3.12] gh-115514: Fix incomplete writes after close while using ssl in asyncio(GH-128037) (#129582)
gh-115514: Fix incomplete writes after close while using ssl in asyncio(GH-128037)
(cherry picked from commit
4e38eeafe2ff3bfc686514731d6281fed34a435e )
Co-authored-by: Vojtěch Boček <vbocek@gmail.com>
Co-authored-by: Kumar Aditya <kumaraditya@python.org>
Miss Islington (bot) [Sun, 2 Feb 2025 08:30:28 +0000 (09:30 +0100)]
[3.12] gh-105704: Disallow square brackets (`[` and `]`) in domain names for parsed URLs (GH-129418) (GH-129527)
gh-105704: Disallow square brackets (`[` and `]`) in domain names for parsed URLs (GH-129418)
* gh-105704: Disallow square brackets ( and ) in domain names for parsed URLs
* Use Sphinx references
* Add mismatched bracket test cases, fix news format
* Add more test coverage for ports
---------
(cherry picked from commit
d89a5f6a6e65511a5f6e0618c4c30a7aa5aba56a )
Co-authored-by: Seth Michael Larson <seth@python.org>
Co-authored-by: Peter Bierma <zintensitydev@gmail.com>
Miss Islington (bot) [Sun, 2 Feb 2025 05:04:45 +0000 (06:04 +0100)]
[3.12] gh-119461: Restore the testSocket VSOCK skipUnless removed by PR GH-119465 (GH-129561) (#129565)
gh-119461: Restore the testSocket VSOCK skipUnless removed by PR GH-119465 (GH-129561)
Restore the skipUnless removed by GH-119465.
This test can only pass on virtual machines, not actual machines.
actual machines see:
```
self.cli.connect((cid, VSOCKPORT))
~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^
OSError: [Errno 19] No such device
```
Reproduced on (Linux) Ubuntu 24.04.1 running 6.8.0-52-generic.
(cherry picked from commit
e1006ce1ded1b18972888ef057718dba6f2c7edd )
Co-authored-by: Gregory P. Smith <greg@krypto.org>
Hugo van Kemenade [Sat, 1 Feb 2025 17:16:38 +0000 (19:16 +0200)]
[3.12] gh-126022: Replace TeX quotation marks with ``"`` in Doc/license.rst (GH-129535) (#129554)
Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
Miss Islington (bot) [Fri, 31 Jan 2025 15:02:30 +0000 (16:02 +0100)]
[3.12] gh-126108: Fix potential null pointer dereference in `PySys_AddWarnOptionUnicode` (GH-126118) (#129522)
gh-126108: Fix potential null pointer dereference in `PySys_AddWarnOptionUnicode` (GH-126118)
(cherry picked from commit
fad36bf38248130bc48b81a5e7c31a7649a6456e )
Co-authored-by: Valery Fedorenko <federicovalenso@gmail.com>
Victor Stinner [Fri, 31 Jan 2025 09:27:35 +0000 (10:27 +0100)]
[3.12] gh-111495: Add PyFile tests (#129449) (#129477) (#129501)
[3.13] gh-111495: Add PyFile tests (#129449) (#129477)
gh-111495: Add PyFile tests (#129449)
Add tests for the following functions in test_capi.test_file:
* PyFile_FromFd()
* PyFile_GetLine()
* PyFile_NewStdPrinter()
* PyFile_WriteObject()
* PyFile_WriteString()
* PyObject_AsFileDescriptor()
Remove test_embed.StdPrinterTests which became redundant.
(cherry picked from commit
4ca9fc08f89bf7172d41e523d9e520eb1729ee8c )
(cherry picked from commit
9a59a51733e58b6091ca9157fd43cc9d0f93a96f )
Irit Katriel [Thu, 30 Jan 2025 12:02:46 +0000 (12:02 +0000)]
[3.12] gh-128799: Add frame of except* to traceback when wrapping a naked exception (GH-128971) (#129328)
Miss Islington (bot) [Thu, 30 Jan 2025 09:08:31 +0000 (10:08 +0100)]
[3.12] remove type annotations from multiprocessing. (GH-129381) (#129471)
remove type annotations from multiprocessing. (GH-129381)
* remove type annotations from multiprocessing.
One of them was technically invalid per typing specs... but since we're not
checking these in the stdlib today lets elide them.
https://discuss.python.org/t/static-type-annotations-in-cpython/65068/13
* use the actual comment style annotation format
---------
(cherry picked from commit
71aecc284efdf997939568a4167dbffe1a65b9bf )
Co-authored-by: Gregory P. Smith <greg@krypto.org>
Co-authored-by: 🇺🇦 Sviatoslav Sydorenko (Святослав Сидоренко) <wk.cvs.github@sydorenko.org.ua>
Miss Islington (bot) [Thu, 30 Jan 2025 08:28:06 +0000 (09:28 +0100)]
[3.12] gh-129403: Fix `ValueError` messages in `asyncio.Barrier` and `threading.Barrier` (GH-129419) (#129469)
gh-129403: Fix `ValueError` messages in `asyncio.Barrier` and `threading.Barrier` (GH-129419)
(cherry picked from commit
bcb25d60b1baf9348e73cbd2359342cea6009c36 )
Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
Co-authored-by: Peter Bierma <zintensitydev@gmail.com>
Miss Islington (bot) [Wed, 29 Jan 2025 21:16:47 +0000 (22:16 +0100)]
[3.12] gh-125522: Fix bare except in `test_uuid` (GH-129018) (#129456)
gh-125522: Fix bare except in `test_uuid` (GH-129018)
(cherry picked from commit
a1a4e9f39ad86359e148fd193089b3b2a354f71d )
Co-authored-by: Tomas R <tomas.roun8@gmail.com>
Miss Islington (bot) [Wed, 29 Jan 2025 16:48:48 +0000 (17:48 +0100)]
[3.12] gh-118761: Improve import time of `subprocess` (GH-129427) (#129448)
gh-118761: Improve import time of `subprocess` (GH-129427)
* subprocess: lazy import signal and locale to improve module import time
(cherry picked from commit
49f24650e4541456872490ec2b59d6d186204891 )
Co-authored-by: Taneli Hukkinen <3275109+hukkin@users.noreply.github.com>
Hugo van Kemenade [Wed, 29 Jan 2025 14:47:50 +0000 (16:47 +0200)]
[3.12]: CI: Change job name to 'build arm64' on Windows (#129434) (#129444)
CI: Change job name to 'build arm64' on Windows (#129434)
(cherry picked from commit
c67afb581eccb3ce20a4965c8f407fd2662b6bdf )
Miss Islington (bot) [Wed, 29 Jan 2025 11:32:54 +0000 (12:32 +0100)]
[3.12] gh-129409: Fix Integer overflow - SEGV while writing data more than 2GB in CSV file (GH-129413) (#129437)
gh-129409: Fix Integer overflow - SEGV while writing data more than 2GB in CSV file (GH-129413)
(cherry picked from commit
97b0ef05d987ebef354512b516a246feb411e815 )
Co-authored-by: Srinivas Reddy Thatiparthy (తాటిపర్తి శ్రీనివాస్ రెడ్డి) <thatiparthysreenivas@gmail.com>
Miss Islington (bot) [Tue, 28 Jan 2025 11:54:27 +0000 (12:54 +0100)]
[3.12] gh-112064: Fix incorrect handling of negative read sizes in `HTTPResponse.read()` (GH-128270) (#129396)
gh-112064: Fix incorrect handling of negative read sizes in `HTTPResponse.read()` (GH-128270)
The parameter `amt` of `HTTPResponse.read()`, which could be a negative integer,
has not been handled before and led to waiting for the connection to close
for `keep-alive connections`. Now, this has been fixed, and passing negative values
to `HTTPResponse().read()` works the same as passing `None` value.
(cherry picked from commit
4d0d24f6e3dff2864007c3cfd1cf7d49c6ee5317 )
Co-authored-by: Yury Manushkin <manushkin@gmail.com>
Miss Islington (bot) [Tue, 28 Jan 2025 00:20:13 +0000 (01:20 +0100)]
[3.12] gh-85046: Document errno constants (GH-126420) (#129384)
(cherry picked from commit
1c3bb200da77f9df30af4717988dad17db086d1a )
Co-authored-by: RUANG (James Roy) <longjinyii@outlook.com>
Miss Islington (bot) [Mon, 27 Jan 2025 22:06:14 +0000 (23:06 +0100)]
[3.12] gh-119511: Fix a potential denial of service in imaplib (GH-119514) (GH-129356)
gh-119511: Fix a potential denial of service in imaplib (GH-119514)
The IMAP4 client could consume an arbitrary amount of memory when trying
to connect to a malicious server, because it read a "literal" data with a
single read(size) call, and BufferedReader.read() allocates the bytes
object of the specified size before reading. Now the IMAP4 client reads data
by chunks, therefore the amount of used memory is limited by the
amount of the data actually been sent by the server.
(cherry picked from commit
735f25c5e3a0f74438c86468ec4dfbe219d93c91 )
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Co-authored-by: Gregory P. Smith <greg@krypto.org>
Miss Islington (bot) [Mon, 27 Jan 2025 17:33:18 +0000 (18:33 +0100)]
[3.12] gh-129346: Handle allocation errors for SQLite aggregate context (GH-129347) (#129373)
(cherry picked from commit
379ab856f59423c570333403a7d5d72f3ea82d52 )
Co-authored-by: Erlend E. Aasland <erlend@python.org>
Miss Islington (bot) [Sun, 26 Jan 2025 14:53:46 +0000 (15:53 +0100)]
[3.12] gh-126022: Remove zope.org from the permitted linkcheck redirects (GH-129308) (#129318)
Co-authored-by: partev <petrosyan@gmail.com>
Miss Islington (bot) [Sun, 26 Jan 2025 10:33:44 +0000 (11:33 +0100)]
[3.12] gh-71339: Use new assertion methods in test_idle (GH-129314) (#129315)
Revise 10 tests in 7 files, with 1 test split into 2.
(cherry picked from commit
1499f66c4c63d68a7ff4fa15fd3f253921f701aa )
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Adam Turner [Sun, 26 Jan 2025 03:54:26 +0000 (03:54 +0000)]
[3.12] GH-121970: Remove pyspecific ``PyDecoratorMixin`` patches (GH-129306) (#129310)
(cherry picked from commit
0ef8d470b79889de065e94cecd0ee01e45037d3a )
Miss Islington (bot) [Sat, 25 Jan 2025 20:12:19 +0000 (21:12 +0100)]
[3.12] gh-58956: Set f_trace on frames with breakpoints after setting a new breakpoint (GH-124454) (#125549)
* gh-58956: Set f_trace on frames with breakpoints after setting a new breakpoint (GH-124454)
(cherry picked from commit
12eaadc0ad33411bb02945d700b6ed7e758bb188 )
Co-authored-by: Tian Gao <gaogaotiantian@hotmail.com>
Hugo van Kemenade [Sat, 25 Jan 2025 13:37:20 +0000 (15:37 +0200)]
[3.12] gh-126022: make license.rst consistent with LICENSE (GH-128516) (#129291)
Co-authored-by: partev <petrosyan@gmail.com>
Miss Islington (bot) [Sat, 25 Jan 2025 03:57:35 +0000 (04:57 +0100)]
[3.12] GH-125722: Remove Sphinx patches (GH-129277) (#129279)
GH-125722: Remove Sphinx patches (GH-129277)
(cherry picked from commit
d40692db06cdae89447c26b6c1b5d2a682c0974f )
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Miss Islington (bot) [Thu, 23 Jan 2025 21:16:21 +0000 (22:16 +0100)]
[3.12] gh-128479: fix asyncio staggered race leaking tasks, and logging unhandled exception.append exception (GH-128475) (#129228)
gh-128479: fix asyncio staggered race leaking tasks, and logging unhandled exception.append exception (GH-128475)
(cherry picked from commit
ec91e1c2762412f1408b0dfb5d281873b852affe )
Co-authored-by: Thomas Grainger <tagrain@gmail.com>
Co-authored-by: Peter Bierma <zintensitydev@gmail.com>
Victor Stinner [Thu, 23 Jan 2025 13:29:46 +0000 (14:29 +0100)]
[3.12] gh-129185: Fix PyTraceMalloc_Untrack() at Python exit (#129191) (#129217) (#129221)
[3.13] gh-129185: Fix PyTraceMalloc_Untrack() at Python exit (#129191) (#129217)
gh-129185: Fix PyTraceMalloc_Untrack() at Python exit (#129191)
Support calling PyTraceMalloc_Track() and PyTraceMalloc_Untrack()
during late Python finalization.
* Call _PyTraceMalloc_Fini() later in Python finalization.
* Test also PyTraceMalloc_Untrack() without the GIL
* PyTraceMalloc_Untrack() now gets the GIL.
* Test also PyTraceMalloc_Untrack() in test_tracemalloc_track_race().
(cherry picked from commit
46c7e13c055c218e18b0424efc60965e6a5fe6ea )
(cherry picked from commit
e3b3e01d6a6f43c15890d14f139f38155601643a )
Hugo van Kemenade [Wed, 22 Jan 2025 21:50:35 +0000 (23:50 +0200)]
[3.12] Add colour to GitHub Actions output (GH-129196) (#129199)
Pablo Galindo Salgado [Wed, 22 Jan 2025 18:08:58 +0000 (18:08 +0000)]
[3.12] gh-124363: Treat debug expressions in f-string as raw strings (GH-128399) (#129190)
(cherry picked from commit
60a3a0dd6fe140fdc87f6e769ee5bb17d92efe4e )
Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
Pablo Galindo Salgado [Wed, 22 Jan 2025 00:47:20 +0000 (00:47 +0000)]
[3.12] gh-129093: Fix f-string debug text sometimes getting cut off when expression contains ! (#129164)
nikalinov [Tue, 21 Jan 2025 23:49:49 +0000 (23:49 +0000)]
[3.12] gh-129044: Update glossary entry for 'loader' to reflect current import system (#129073) (#129130)
* gh-129044: Update glossary entry for 'loader' to reflect current import system (#129073)
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
(cherry picked from commit
e1fa2fcc7c1bf5291a7f71300b7828b49be9ab72 )
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Miss Islington (bot) [Tue, 21 Jan 2025 20:12:46 +0000 (21:12 +0100)]
[3.12] gh-122845: fix parameter_list_starargs in function definition pseudo-grammar (GH-122847) (#129151)
gh-122845: fix parameter_list_starargs in function definition pseudo-grammar (GH-122847)
Thanks to Artur Chakhvadze for bugfix.
(cherry picked from commit
610584639003317193cdcfe38bbdc8268b612828 )
Co-authored-by: Sergey B Kirpichev <skirpichev@gmail.com>
Miss Islington (bot) [Tue, 21 Jan 2025 09:40:38 +0000 (10:40 +0100)]
[3.12] Docs: fix typo in `Doc/howto/mro.rst` (GH-129095) (GH-129121)
(cherry picked from commit
da310d209a6af45e5e1ea48a873f1d14be471a09 )
Co-authored-by: smelnikov <13030121+smelnikov@users.noreply.github.com>
Thomas Grainger [Tue, 21 Jan 2025 05:41:39 +0000 (05:41 +0000)]
[3.12] gh-128588: fix refcycles in eager task creation and remove eager tasks optimization that missed and introduced incorrect cancellations (#129063) (#128586)
Co-authored-by: Kumar Aditya <kumaraditya@python.org>
Miss Islington (bot) [Mon, 20 Jan 2025 23:59:59 +0000 (00:59 +0100)]
[3.12] GH-121970: Extract ``changes`` into a new extension (GH-129105) (#129110)
GH-121970: Extract ``changes`` into a new extension (GH-129105)
(cherry picked from commit
e54ac3b69edacf4149988150591226df1397d127 )
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Miss Islington (bot) [Mon, 20 Jan 2025 21:00:09 +0000 (22:00 +0100)]
[3.12] gh-111178: fix UBSan failures in `Modules/_multiprocessing/semaphore.c` (GH-129084) (#129101)
gh-111178: fix UBSan failures in `Modules/_multiprocessing/semaphore.c` (GH-129084)
fix UBSan failures for `SemLockObject`
(cherry picked from commit
5ed5572cac7ef204767ddf8e8888e15672ba558e )
Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
Miss Islington (bot) [Mon, 20 Jan 2025 20:40:28 +0000 (21:40 +0100)]
[3.12] GH-128131: Completely support random read access of uncompressed unencrypted files in ZipFile (GH-128143) (#129092)
GH-128131: Completely support random read access of uncompressed unencrypted files in ZipFile (GH-128143)
(cherry picked from commit
dda02eb7be62bf0af850a7521c77c90ea997df6c )
Co-authored-by: 5ec1cff <56485584+5ec1cff@users.noreply.github.com>
Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
Miss Islington (bot) [Mon, 20 Jan 2025 19:13:23 +0000 (20:13 +0100)]
[3.12] doc: fix venv creating for the local Python using uv (GH-129094) (#129097)
Co-authored-by: Filipe Laíns 🇵🇸 <lains@riseup.net>
Miss Islington (bot) [Mon, 20 Jan 2025 16:06:18 +0000 (17:06 +0100)]
[3.12] Docs C API: Clarify what happens when null bytes are passed to `PyUnicode_AsUTF8` (GH-127458) (#129081)
Docs C API: Clarify what happens when null bytes are passed to `PyUnicode_AsUTF8` (GH-127458)
(cherry picked from commit
e792f4bc2e712bb6e2143599d2b88dd339de83e6 )
Co-authored-by: Peter Bierma <zintensitydev@gmail.com>
Co-authored-by: Stan U. <89152624+StanFromIreland@users.noreply.github.com>
Co-authored-by: Tomas R. <tomas.roun8@gmail.com>
Co-authored-by: Victor Stinner <vstinner@python.org>
Serhiy Storchaka [Mon, 20 Jan 2025 12:06:02 +0000 (14:06 +0200)]
[3.12] gh-71339: Add additional assertion methods in test.support (GH-128707) (GH-128815) (GH-129059)
Add a mix-in class ExtraAssertions containing the following methods:
* assertHasAttr() and assertNotHasAttr()
* assertIsSubclass() and assertNotIsSubclass()
* assertStartsWith() and assertNotStartsWith()
* assertEndsWith() and assertNotEndsWith()
(cherry picked from commit
c6a566e47b9903d48e6e1e78a1af20e6c6c535cf )
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
(cherry picked from commit
06cad77a5b345adde88609be9c3c470c5cd9f417 )
Miss Islington (bot) [Mon, 20 Jan 2025 10:28:55 +0000 (11:28 +0100)]
[3.12] Fix a typo in `syslog`'s error message (GH-129029) (#129050)
Fix a typo in `syslog`'s error message (GH-129029)
(cherry picked from commit
9b1c1817af30e609b7cbfacbe5b1e73e21dc9e37 )
Co-authored-by: Tomas R <tomas.roun8@gmail.com>
Miss Islington (bot) [Mon, 20 Jan 2025 07:17:35 +0000 (08:17 +0100)]
[3.12] GH-125722: Use long options for Sphinx (GH-129039) (#129042)
GH-125722: Use long options for Sphinx (GH-129039)
(cherry picked from commit
4967fa6a9c0db7ea3ade905d724a04688cfc7a5e )
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Miss Islington (bot) [Mon, 20 Jan 2025 00:46:05 +0000 (01:46 +0100)]
[3.12] GH-125722: Increase minimum supported Sphinx to 8.1.3 (GH-128922) (#129038)
(cherry picked from commit
d46b577ec026c2e700a9f920f81cfbf698e53eb6 )
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Miss Islington (bot) [Mon, 20 Jan 2025 00:12:39 +0000 (01:12 +0100)]
[3.12] gh-129020: Remove ambiguous sentence from `tokenize.untokenize` docs (GH-129021) (#129036)
gh-129020: Remove ambiguous sentence from `tokenize.untokenize` docs (GH-129021)
(cherry picked from commit
bca35f0e782848ae2acdcfbfb000cd4a2af49fbd )
Co-authored-by: Tomas R <tomas.roun8@gmail.com>
Miss Islington (bot) [Sun, 19 Jan 2025 21:07:39 +0000 (22:07 +0100)]
[3.12] gh-80222: Fix email address header folding with long quoted-string (GH-122753) (#129008)
gh-80222: Fix email address header folding with long quoted-string (GH-122753)
Email generators using email.policy.default could incorrectly omit the
quote ('"') characters from a quoted-string during header refolding,
leading to invalid address headers and enabling header spoofing. This
change restores the quote characters on a bare-quoted-string as the
header is refolded, and escapes backslash and quote chars in the string.
(cherry picked from commit
5aaf41685834901e4ed0a40f4c055b92991a0bb5 )
Co-authored-by: Mike Edmunds <medmunds@gmail.com>
Victor Stinner [Sun, 19 Jan 2025 13:51:53 +0000 (14:51 +0100)]
[3.12] gh-111495: Add more tests on PyEval C APIs (#122789) (#128987) (#129023)
* Add Lib/test/test_capi/test_eval.py
* Add Modules/_testlimitedcapi/eval.c
(cherry picked from commit
bf8b3746398ea756c97e3cf263d63ca3ce3a544e )
* gh-111495: Fix refleaks in test_capi.test_eval tests (#122851)
(cherry picked from commit
b4a316087c32d83e375087fd35fc511bc430ee8b )
(cherry picked from commit
430ccbc009aa7a2da92b85d7aeadd39e1666e875 )
Victor Stinner [Sun, 19 Jan 2025 13:24:14 +0000 (14:24 +0100)]
[3.12] gh-128679: Fix tracemalloc.stop() race conditions (#128897) (#129022)
[3.13] gh-128679: Fix tracemalloc.stop() race conditions (#128897)
tracemalloc_alloc(), tracemalloc_realloc(), PyTraceMalloc_Track(),
PyTraceMalloc_Untrack() and _PyTraceMalloc_TraceRef() now check
tracemalloc_config.tracing after calling TABLES_LOCK().
_PyTraceMalloc_Stop() now protects more code with TABLES_LOCK(),
especially setting tracemalloc_config.tracing to 1.
Add a test using PyTraceMalloc_Track() to test tracemalloc.stop()
race condition.
Call _PyTraceMalloc_Init() at Python startup.
(cherry picked from commit
6b47499510e47c0401d1f6cca2660fc12c496e39 )
Serhiy Storchaka [Sun, 19 Jan 2025 13:21:55 +0000 (15:21 +0200)]
[3.12] gh-128911: Add tests on the PyImport C API (GH-128915) (GH-128960) (#128989)
* Add Modules/_testlimitedcapi/import.c
* Add Lib/test/test_capi/test_import.py
* Remove _testcapi.check_pyimport_addmodule(): tests already covered
by newly added tests.
(cherry picked from commit
34ded1a1a10204635cad27830fcbee2f8547e8ed )
Co-authored-by: Victor Stinner <vstinner@python.org>
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
(cherry picked from commit
d95ba9fa1110534b7247fa2ff12b90e930c93256 )
Tian Gao [Sat, 18 Jan 2025 22:21:34 +0000 (17:21 -0500)]
[3.12] gh-128991: Release the enter frame reference within bdb callba… (#129003)
[3.12] gh-128991: Release the enter frame reference within bdb callback (GH-128992)
* Release the enter frame reference within bdb callback
* 📜🤖 Added by blurb_it.
---------
(cherry picked from commit
61b35f74aa4a6ac606635e245147ff3658628d99 )
Miss Islington (bot) [Sat, 18 Jan 2025 21:00:14 +0000 (22:00 +0100)]
[3.12] gh-128998: Fix indentation of numbered list and literal block (GH-128999) (#129001)
gh-128998: Fix indentation of numbered list and literal block (GH-128999)
(cherry picked from commit
e8092e5cdcd6707ac0b16d8fb37fa080a88bcc97 )
Co-authored-by: Rafael Fontenelle <rffontenelle@users.noreply.github.com>
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Peter Bierma [Sat, 18 Jan 2025 20:52:24 +0000 (15:52 -0500)]
[3.12] Pre-commit: Drop specific language version and bump hooks (GH-128801) (#128997)
Miss Islington (bot) [Sat, 18 Jan 2025 18:41:59 +0000 (19:41 +0100)]
[3.12] gh-121542: Document trailing newline behavior in `set_content()` (GH-121543) (#128996)
gh-121542: Document trailing newline behavior in `set_content()` (GH-121543)
(cherry picked from commit
fba475ae6f932d0aaee6832b4102b2d4c50df70f )
Co-authored-by: Peter Bierma <zintensitydev@gmail.com>
Co-authored-by: Yizheng Meng <dev@rapidcow.org>
Ed Nutting [Sat, 18 Jan 2025 17:00:18 +0000 (17:00 +0000)]
[3.12] gh-127599: Fix _Py_RefcntAdd missing calls to _Py_INCREF_STAT_INC/_Py_INCREF_IMMORTAL_STAT_INC (GH-127717) (#128712)
Previously, `_Py_RefcntAdd` hasn't called
`_Py_INCREF_STAT_INC/_Py_INCREF_IMMORTAL_STAT_INC` which is incorrect.
Now it has been fixed.
(cherry picked from commit
ab05beb8cea62636bd86f6f7cf1a82d7efca7162 )
Bénédikt Tran [Sat, 18 Jan 2025 11:13:03 +0000 (12:13 +0100)]
[3.12] gh-125997: suggest efficient alternatives for `time.sleep(0)` (GH-128752) (#128985)
Bénédikt Tran [Sat, 18 Jan 2025 11:01:56 +0000 (12:01 +0100)]
[3.12] gh-127637: add tests for `dis` command-line interface (#127759) (#127780)
Miss Islington (bot) [Sat, 18 Jan 2025 10:14:07 +0000 (11:14 +0100)]
[3.12] gh-128961: Fix exhausted array iterator crash in __setstate__() (GH-128962) (#128977)
(cherry picked from commit
4dade055f4e18a7e91bc70293abb4db745ad16ca )
Co-authored-by: Tomasz Pytel <tompytel@gmail.com>
Miss Islington (bot) [Sat, 18 Jan 2025 01:06:45 +0000 (02:06 +0100)]
[3.12] gh-128916: Do not set `SO_REUSEPORT` on non-`AF_INET*` sockets (GH-128933) (#128970)
gh-128916: Do not set `SO_REUSEPORT` on non-`AF_INET*` sockets (GH-128933)
* gh-128916: Do not set `SO_REUSEPORT` on non-`AF_INET*` sockets
Do not attempt to set ``SO_REUSEPORT`` on sockets of address familifies other
than ``AF_INET`` and ``AF_INET6``, as it is meaningless with these address
families, and the call with fail with Linux kernel 6.12.9 and newer.
* Apply suggestions from code review
---------
(cherry picked from commit
3829104ab412a47bf3f36b8c133c886d2cc9a6d4 )
Co-authored-by: Michał Górny <mgorny@gentoo.org>
Co-authored-by: Vinay Sajip <vinay_sajip@yahoo.co.uk>
Miss Islington (bot) [Sat, 18 Jan 2025 00:53:29 +0000 (01:53 +0100)]
[3.12] Fix definition of a `generator iterator` in `glossary.rst` (GH-128952) (#128968)
Fix definition of a `generator iterator` in `glossary.rst` (GH-128952)
Fix possible typo/grammar in glossary.rst
As discussed in https://discuss.python.org/t/typo-in-glossary-entry-for-generator-iterator/77163
(cherry picked from commit
8174770d311ba09c07a47cc3ae90a1db2e7d7708 )
Co-authored-by: Daniel F Moisset <dfmoisset@gmail.com>
Tian Gao [Fri, 17 Jan 2025 19:19:37 +0000 (14:19 -0500)]
[3.12] gh-58956: Fix a frame refleak in bdb (GH-128190) (#128953)
* [3.12] gh-58956: Fix a frame refleak in bdb (GH-128190)
(cherry picked from commit
767c89ba7c5a70626df6e75eb56b546bf911b997 )
Co-authored-by: Tian Gao <gaogaotiantian@hotmail.com>
Miss Islington (bot) [Fri, 17 Jan 2025 12:48:24 +0000 (13:48 +0100)]
[3.12] gh-58689: Fix os.kill() error handling on Windows (GH-128932) (#128938)
gh-58689: Fix os.kill() error handling on Windows (GH-128932)
(cherry picked from commit
939df0f9f6a76e0916b3ba53841e1413ab90952e )
Co-authored-by: Victor Stinner <vstinner@python.org>
Miss Islington (bot) [Thu, 16 Jan 2025 10:23:48 +0000 (11:23 +0100)]
[3.12] gh-128017: Make a note that sys variables are read-only (GH-128887) (#128909)
gh-128017: Make a note that sys variables are read-only (GH-128887)
(cherry picked from commit
313b96eb8b8d0ad3bac58d633822a0a3705ce60b )
Co-authored-by: Srinivas Reddy Thatiparthy (తాటిపర్తి శ్రీనివాస్ రెడ్డి) <thatiparthysreenivas@gmail.com>
Miss Islington (bot) [Thu, 16 Jan 2025 09:09:13 +0000 (10:09 +0100)]
[3.12] gh-128816: Fix warnings in test_doctest (GH-128817) (GH-128871)
* Fix a deprecation warning for using importlib.resources.abc.ResourceReader.
* Fix an import warning when importing readline (if it has not yet been imported).
(cherry picked from commit
599be687ec7327c30c6469cf743aa4ee9e82232d )
Co-authored-by: Thomas Grainger <tagrain@gmail.com>
Miss Islington (bot) [Wed, 15 Jan 2025 20:55:06 +0000 (21:55 +0100)]
[3.12] gh-97850: Suggest `TraversableResources` as the alternative for `ResourceLoader` (GH-128601) (GH-128896)
gh-97850: Suggest `TraversableResources` as the alternative for `ResourceLoader` (GH-128601)
Suggest TraversableResources as the alternative for ResourceLoader.
Previously, ResourceReader was the suggested alternative, but it
is itself deprecated in favour of TraversableResources.
(cherry picked from commit
256d6d2131541b3ff8f06f42c8157f808fde464c )
Co-authored-by: Tomas R <tomas.roun8@gmail.com>
Miss Islington (bot) [Wed, 15 Jan 2025 14:28:21 +0000 (15:28 +0100)]
[3.12] gh-67206: Document that `string.printable` is not printable in the POSIX sense (GH-128820) (#128867)
gh-67206: Document that `string.printable` is not printable in the POSIX sense (GH-128820)
(cherry picked from commit
d906bde250d59c396d8dab92285b832c66cdec27 )
Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
Miss Islington (bot) [Wed, 15 Jan 2025 14:20:08 +0000 (15:20 +0100)]
[3.12] gh-128874: Fix the documentation for blurb 2.0 (GH-128875) (#128878)
gh-128874: Fix the documentation for blurb 2.0 (GH-128875)
(cherry picked from commit
40a4d88a14c741172a158683c39d232c587c6f11 )
Co-authored-by: Victor Stinner <vstinner@python.org>
Bénédikt Tran [Wed, 15 Jan 2025 13:22:45 +0000 (14:22 +0100)]
[3.12] gh-128833: Patch `test_embed.test_specialized_static_code_gets_unspecialized_at_Py_FINALIZE` on Windows (#128860)
Hotfix for `test_embed`
Miss Islington (bot) [Tue, 14 Jan 2025 15:32:11 +0000 (16:32 +0100)]
[3.12] gh-109959: Skip test_glob.test_selflink() flaky test (GH-128812) (#128834)
gh-109959: Skip test_glob.test_selflink() flaky test (GH-128812)
(cherry picked from commit
1153e66e20124b8f3484bcaddbc0e252d31161a6 )
Co-authored-by: Victor Stinner <vstinner@python.org>
Miss Islington (bot) [Tue, 14 Jan 2025 15:26:46 +0000 (16:26 +0100)]
[3.12] Fix a "doctest" block in `Doc/library/turtle.rst` (GH-128831) (#128836)
Fix a "doctest" block in `Doc/library/turtle.rst` (GH-128831)
(cherry picked from commit
1598e18a659ef3a533caa0a79a489a3ed1d80bdd )
Co-authored-by: Rafael Fontenelle <rffontenelle@users.noreply.github.com>
Miss Islington (bot) [Mon, 13 Jan 2025 17:16:25 +0000 (18:16 +0100)]
[3.12] gh-125997: Increase test coverage for `time.sleep()` (GH-128751) (#128795)
gh-125997: Increase test coverage for `time.sleep()` (GH-128751)
- Add tests for durations of invalid types.
- Add tests for `int` and `float` durations, including signed zeroes durations.
- Add tests for nonzero very small durations and durations close to the clock resolution.
---------
(cherry picked from commit
b70a567575db37846beecbe8b40fb56b875274db )
Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
Co-authored-by: Victor Stinner <vstinner@python.org>
Miss Islington (bot) [Mon, 13 Jan 2025 16:32:38 +0000 (17:32 +0100)]
[3.12] Explicitly import `urllib.error` in `urllib.robotparser` (GH-128737) (#128794)
Explicitly import `urllib.error` in `urllib.robotparser` (GH-128737)
(cherry picked from commit
53e8942e6938df3a32b783815f1bd4b76eed3dd0 )
Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
Miss Islington (bot) [Mon, 13 Jan 2025 16:23:53 +0000 (17:23 +0100)]
[3.12] gh-128562: Fix generation of the tkinter widget names (GH-128604) (GH-128792)
There were possible conflicts if the widget class name ends with a digit.
(cherry picked from commit
da8825ea95a7096bb4f933d33b212a94ade10f6e )
Co-authored-by: Zhikang Yan <2951256653@qq.com>
Miss Islington (bot) [Mon, 13 Jan 2025 13:15:20 +0000 (14:15 +0100)]
[3.12] gh-128078: Clear exception in `anext` before calling `_PyGen_SetStopIterationValue` (GH-128780) (#128784)
gh-128078: Clear exception in `anext` before calling `_PyGen_SetStopIterationValue` (GH-128780)
(cherry picked from commit
76ffaef729c91bb79da6df2ade48f3ec51118300 )
Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
Co-authored-by: Kumar Aditya <kumaraditya@python.org>
Miss Islington (bot) [Mon, 13 Jan 2025 10:40:22 +0000 (11:40 +0100)]
[3.12] gh-123345: improve `fnmatch` docs (GH-123346) (#128775)
gh-123345: improve `fnmatch` docs (GH-123346)
(cherry picked from commit
29fe8072cf404b891dde9c1d415095edddbe19de )
Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
Miss Islington (bot) [Sun, 12 Jan 2025 13:34:24 +0000 (14:34 +0100)]
[3.12] gh-128731: Explicitly close socket on error in robotparser.RobotFileParser.read() (GH-128733) (GH-128756)
(cherry picked from commit
5e65a1acc0b630397f1d190aed279114e6e99612 )
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Serhiy Storchaka [Sun, 12 Jan 2025 11:30:07 +0000 (13:30 +0200)]
[3.12] gh-128734: Explicitly close sockets in urllib tests (GH-128735) (GH-128750)
(cherry picked from commit
5ace71713b03cb37d829f50c849a8bb8a518738d )
Damien [Sat, 11 Jan 2025 22:23:53 +0000 (06:23 +0800)]
[3.12] gh-122544: Change OS image in GitHub Actions to Ubuntu 24.04 (#122566) (#126621)
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
Miss Islington (bot) [Sat, 11 Jan 2025 11:30:29 +0000 (12:30 +0100)]
[3.12] gh-128302: Fix bugs in xml.dom.xmlbuilder (GH-128284) (#128583)
gh-128302: Fix bugs in xml.dom.xmlbuilder (GH-128284)
* Allow DOMParser.parse() to correctly handle DOMInputSource instances
that only have a systemId attribute set.
* Fix DOMEntityResolver.resolveEntity(), which was broken by the
Python 3.0 transition.
* Add Lib/test/test_xml_dom_xmlbuilder.py with few tests.
(cherry picked from commit
6ea04da27036eaa69d65150148bb8c537d9beacf )
Co-authored-by: Stephen Morton <git@tungol.org>
Miss Islington (bot) [Fri, 10 Jan 2025 03:51:45 +0000 (04:51 +0100)]
[3.12] gh-126862: Use `Py_ssize_t` instead of `int` when processing the number of super-classes (GH-127523) (#128700)
gh-126862: Use `Py_ssize_t` instead of `int` when processing the number of super-classes (GH-127523)
(cherry picked from commit
2fcdc8488c32d18f4567f797094068a994777f16 )
Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
Miss Islington (bot) [Thu, 9 Jan 2025 12:28:15 +0000 (13:28 +0100)]
[3.12] gh-124433: fix docs for `asyncio.Queue.task_done` (GH-128669) (#128672)
gh-124433: fix docs for `asyncio.Queue.task_done` (GH-128669)
(cherry picked from commit
4322a318ea98ceeb95d88b7ae6b5cfa3572d2069 )
Co-authored-by: Kumar Aditya <kumaraditya@python.org>
Miss Islington (bot) [Thu, 9 Jan 2025 10:18:23 +0000 (11:18 +0100)]
[3.12] gh-126137: improve docs for `loop.add_reader` and `loop.add_writer` (GH-128666) (#128668)
gh-126137: improve docs for `loop.add_reader` and `loop.add_writer` (GH-128666)
(cherry picked from commit
b2adf556747d080f04b53ba4063b627c2dbe41d1 )
Co-authored-by: Kumar Aditya <kumaraditya@python.org>
Miss Islington (bot) [Thu, 9 Jan 2025 09:26:40 +0000 (10:26 +0100)]
[3.12] gh-79149: document reentrant safety of `loop.call_soon_threadsafe` (GH-128662) (#128665)
gh-79149: document reentrant safety of `loop.call_soon_threadsafe` (GH-128662)
(cherry picked from commit
4685401845ba3e2ab8c9f4a9a10aa2969b11985f )
Co-authored-by: Kumar Aditya <kumaraditya@python.org>
Co-authored-by: Thomas Grainger <tagrain@gmail.com>
Miss Islington (bot) [Wed, 8 Jan 2025 12:25:59 +0000 (13:25 +0100)]
[3.12] gh-128615: Cover pickling of `ParamSpecArgs` and `ParamSpecKwargs` (GH-128616) (#128626)
Co-authored-by: sobolevn <mail@sobolevn.me>
Miss Islington (bot) [Wed, 8 Jan 2025 12:21:30 +0000 (13:21 +0100)]
[3.12] gh-41872: Fix quick extraction of module docstrings from a file in pydoc (GH-127520) (GH-128621)
It now supports docstrings with single quotes, escape sequences,
raw string literals, and other Python syntax.
(cherry picked from commit
474e419792484d1c16e7d9c99b7bf144136b9307 )
Co-authored-by: Srinivas Reddy Thatiparthy (తాటిపర్తి శ్రీనివాస్ రెడ్డి) <thatiparthysreenivas@gmail.com>
Co-authored-by: Éric <merwok@netwok.org>
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Miss Islington (bot) [Wed, 8 Jan 2025 12:20:00 +0000 (13:20 +0100)]
[3.12] gh-128613: Increase `typing.Concatenate` coverage (GH-128614) (#128624)
gh-128613: Increase `typing.Concatenate` coverage (GH-128614)
(cherry picked from commit
eb26e170695f15714b5e2ae0c0b83aa790c97869 )
Co-authored-by: sobolevn <mail@sobolevn.me>
Miss Islington (bot) [Wed, 8 Jan 2025 08:51:19 +0000 (09:51 +0100)]
[3.12] gh-87506: Document that json.load*() can raise UnicodeDecodeError (GH-127355) (#128608)
(cherry picked from commit
15372d0112ac7fbbbe313725dd87d5a45af2f6d3 )
(cherry picked from commit
cdfb8bc93a4d8c06d2404ba2d243937ba209438c )
Co-authored-by: Srinivas Reddy Thatiparthy (తాటిపర్తి శ్రీనివాస్ రెడ్డి) <thatiparthysreenivas@gmail.com>
Co-authored-by: Erlend Aasland <erlend@python.org>
Erlend E. Aasland [Wed, 8 Jan 2025 00:23:17 +0000 (01:23 +0100)]
[3.12] gh-123085: Remove double 'import os' added by PR #124021 (#128600)
gh-123085: Remove double 'import os' added by PR #124021
Erlend E. Aasland [Tue, 7 Jan 2025 22:05:42 +0000 (23:05 +0100)]
[3.12] gh-127614: Correctly check for ttyname_r() in configure (#128503) (#128599)
(cherry picked from commit
e08b28235a863323ca3a7e444776bb7803e77caf )
PR #14868 replaced the ttyname() call with ttyname_r(), but the old
check remained.
Miss Islington (bot) [Tue, 7 Jan 2025 21:14:50 +0000 (22:14 +0100)]
[3.12] Docs: mark up json.load() using parameter list (GH-128488) (#128597)
(cherry picked from commit
a21e31ec5417374497b0f969ee2b3dc84a0944ff )
Co-authored-by: Erlend E. Aasland <erlend@python.org>
Miss Islington (bot) [Tue, 7 Jan 2025 17:44:56 +0000 (18:44 +0100)]
[3.12] gh-98188: Fix EmailMessage.get_payload to decode data when CTE value has extra text (GH-127547) (#128529)
gh-98188: Fix EmailMessage.get_payload to decode data when CTE value has extra text (GH-127547)
Up to this point message handling has been very strict with regards to content encoding values: mixed case was accepted, but trailing blanks or other text would cause decoding failure, even if the first token was a valid encoding. By Postel's Rule we should go ahead and decode as long as we can recognize that first token. We have not thought of any security or backward compatibility concerns with this fix.
This fix does introduce a new technique/pattern to the Message code: we look to see if the header has a 'cte' attribute, and if so we use that. This effectively promotes the header API exposed by HeaderRegistry to an API that any header parser "should" support. This seems like a reasonable thing to do. It is not, however, a requirement, as the string value of the header is still used if there is no cte attribute.
The full fix (ignore any trailing blanks or blank-separated trailing text) applies only to the non-compat32 API. compat32 is only fixed to the extent that it now ignores trailing spaces. Note that the HeaderRegistry parsing still records a HeaderDefect if there is extra text.
(cherry picked from commit
a62ba52f1439c1f878a3ff9b8544caf9aeef9b90 )
Co-authored-by: RanKKI <hliu86.me@gmail.com>
Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
Miss Islington (bot) [Tue, 7 Jan 2025 11:28:03 +0000 (12:28 +0100)]
[3.12] gh-123085: _compile_importlib: Avoid copying sources before compilation (GH-124131) (GH-128581)
gh-123085: _compile_importlib: Avoid copying sources before compilation (GH-124131)
(cherry picked from commit
42c8b0556c02d29e32f4c7c95e7128a343716250 )
Co-authored-by: Petr Viktorin <encukou@gmail.com>
Co-authored-by: Jason R. Coombs <jaraco@jaraco.com>
Miss Islington (bot) [Tue, 7 Jan 2025 08:06:52 +0000 (09:06 +0100)]
[3.12] gh-108202: Document calendar.Calendar.firstweekday (GH-128566) (#128580)
(cherry picked from commit
b3cbd8f1b58b9e71df20bdda9960e7d3190c509e )
Co-authored-by: Erlend E. Aasland <erlend@python.org>
Miss Islington (bot) [Tue, 7 Jan 2025 05:21:43 +0000 (06:21 +0100)]
[3.12] gh-128472: Add `-skip-funcs` to BOLT options to fix computed goto errors (gh-128511) (gh-128572)
gh-128472: Add `-skip-funcs` to BOLT options to fix computed goto errors (gh-128511)
* Add `-skip-funcs` to BOLT options to fix computed goto errors
* NEWS
---------
(cherry picked from commit
24b147a19b360c49cb1740aa46211d342aaa071f )
Co-authored-by: Zanie Blue <contact@zanie.dev>
Co-authored-by: Gregory Szorc <gregory.szorc@gmail.com>
Miss Islington (bot) [Mon, 6 Jan 2025 23:46:16 +0000 (00:46 +0100)]
[3.12] gh-108202: Document `calendar.Calendar` methods `getfirstweekday` and `setfirstweekday` (GH-127579) (#128565)
(cherry picked from commit
953b49e5468d02afaddadc2307f4763422078603 )
Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
Miss Islington (bot) [Mon, 6 Jan 2025 21:20:55 +0000 (22:20 +0100)]
[3.12] gh-90241: Clarify documentation for PyUnicode_FSConverter and PyUnicode_FSDecoder (GH-128451) (GH-128543)
(cherry picked from commit
657d7b77e5c69967e9c0000b986fa4872d13958c )
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
Miss Islington (bot) [Mon, 6 Jan 2025 10:57:26 +0000 (11:57 +0100)]
[3.12] gh-77214: Update outdated documentation for numeric PyArg_Parse formats (GH-128454) (GH-128539)
(cherry picked from commit
8d15058d61681e98579cf3fbd3c6fd13b3df6a72 )
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Miss Islington (bot) [Mon, 6 Jan 2025 10:04:57 +0000 (11:04 +0100)]
[3.12] gh-114990: Add missing mixin methods in collections.abc's document (GH-114991) (#128536)
Co-authored-by: AN Long <aisk@users.noreply.github.com>
Co-authored-by: Carol Willing <carolcode@willingconsulting.com>
Miss Islington (bot) [Mon, 6 Jan 2025 08:59:24 +0000 (09:59 +0100)]
[3.12] gh-128519: Align the docstring of untokenize() to match the docs (GH-128521) (#128532)
(cherry picked from commit
aef52ca8b334ff90e8032da39f4d06e7b5130eb9 )
Co-authored-by: Tomas R <tomas.roun8@gmail.com>