]>
git.ipfire.org Git - thirdparty/Python/cpython.git/log
Miss Islington (bot) [Fri, 28 Feb 2025 08:28:14 +0000 (09:28 +0100)]
[3.12] gh-129726: Break `gzip.GzipFile` reference loop (GH-130055) (#130670)
gh-129726: Break `gzip.GzipFile` reference loop (GH-130055)
A reference loop was resulting in the `fileobj` held by the `GzipFile`
being closed before the `GzipFile`.
The issue started with gh-89550 in 3.12, but was hidden in most cases
until 3.13 when gh-62948 made it more visible.
(cherry picked from commit
7f39137662f637518a74228286e7ec675fa4e27d )
Co-authored-by: Cody Maloney <cmaloney@users.noreply.github.com>
Victor Stinner [Fri, 28 Feb 2025 08:19:50 +0000 (09:19 +0100)]
[3.12] gh-129296: Fix `pythread.h` include paths (#129320) (#130668)
gh-129296: Fix `pythread.h` include paths (#129320)
Use relative includes in Include/cpython/pythread.h for
pthread_stubs.h.
(cherry picked from commit
3a974e39d54902699f360bc4db2fd351a6baf3ef )
Co-authored-by: Zanie Blue <contact@zanie.dev>
Hugo van Kemenade [Thu, 27 Feb 2025 21:57:13 +0000 (23:57 +0200)]
[3.12] gh-125553: Fix backslash continuation in `untokenize` (GH-126010) (#130579)
(cherry picked from commit
7ad793e5dbdf07e51a71b70d20f3e6e3ab60244d )
Co-authored-by: Tomas R. <tomas.roun8@gmail.com>
Miss Islington (bot) [Thu, 27 Feb 2025 21:29:33 +0000 (22:29 +0100)]
[3.12] GH-121970: Extract ``issue_role`` into a new extension (GH-130615) (#130652)
(cherry picked from commit
043ab3af9ac81c6315395bef814fd12acb873b23 )
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
Hugo van Kemenade [Thu, 27 Feb 2025 18:17:08 +0000 (20:17 +0200)]
[3.12] GH-92897: schedule the check_home deprecation to 3.15 (GH-129102) (#130585)
Co-authored-by: Filipe Laíns 🇵🇸 <lains@riseup.net>
Petr Viktorin [Thu, 27 Feb 2025 15:30:46 +0000 (16:30 +0100)]
[3.12] gh-129405: Fix doc for Py_mod_multiple_interpreters default, and add test (GH-129406) (GH-130510)
shenxianpeng [Thu, 27 Feb 2025 14:47:41 +0000 (22:47 +0800)]
[3.12] gh-127785: Limit check labels github action permission (GH-130596) (#130625)
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Miss Islington (bot) [Thu, 27 Feb 2025 14:26:42 +0000 (15:26 +0100)]
[3.12] Doc: Strip trailing whitespace in ``pydoc_topics`` (GH-130492) (#130636)
(cherry picked from commit
3f3e1c4095ae229b0c6d0364f289a20732281a96 )
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Adam Turner [Thu, 27 Feb 2025 14:18:54 +0000 (14:18 +0000)]
[3.12] GH-121970: Extract `pydoc_topics` into a new extension (#129116) (#130443)
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Adam Turner [Wed, 26 Feb 2025 22:09:43 +0000 (22:09 +0000)]
[3.12] gh-130604: Always run all matrix workflows in GitHub Actions (GH-130603) (#130613)
(cherry picked from commit
fda056e64bdfcac3dd3d13eebda0a24994d83cb8 )
Serhiy Storchaka [Wed, 26 Feb 2025 15:20:47 +0000 (17:20 +0200)]
[3.12] gh-130163: Fix crashes related to PySys_GetObject() (GH-130503) (GH-130556) (GH-130576)
The use of PySys_GetObject() and _PySys_GetAttr(), which return a borrowed
reference, has been replaced by using one of the following functions, which
return a strong reference and distinguish a missing attribute from an error:
_PySys_GetOptionalAttr(), _PySys_GetOptionalAttrString(),
_PySys_GetRequiredAttr(), and _PySys_GetRequiredAttrString().
(cherry picked from commit
0ef4ffeefd1737c18dc9326133c7894d58108c2e )
(cherry picked from commit
7c1b76fce8c8df00da38830f72dbdde6881a33be )
(cherry picked from commit
2ab7e1135a2d5ca45b60881ece27729e4fc0ee8b )
Miss Islington (bot) [Wed, 26 Feb 2025 13:03:18 +0000 (14:03 +0100)]
[3.12] Fix indentation for contextlib.asynccontextmanager docs (GH-127333) (#130580)
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
Victor Stinner [Wed, 26 Feb 2025 11:38:21 +0000 (12:38 +0100)]
[3.12] GH-130396: Treat clang -Og as optimized for gdb tests (GH-130550) (#130573)
GH-130396: Treat clang -Og as optimized for gdb tests (GH-130550)
(cherry picked from commit
129db32d6f2d7f450d2741da6a222c18e458c61b )
Co-authored-by: Mark Shannon <mark@hotpy.org>
Miss Islington (bot) [Wed, 26 Feb 2025 10:03:00 +0000 (11:03 +0100)]
[3.12] Docs: Fix some semantic usages of `iterator.__iter__` (GH-130172) (GH-130544)
These references to an `__iter__` method mean `object.__iter__`, not `iterator.__iter__`.
(cherry picked from commit
4d3a7ea354a8ca7a9978f48e54399526d1b83f42 )
Co-authored-by: Yuki Kobayashi <drsuaimqjgar@gmail.com>
sobolevn [Wed, 26 Feb 2025 09:27:33 +0000 (12:27 +0300)]
[3.12] gh-107526: Revert "gh-100357: Convert several functions in bltinsmodule to AC" (GH-107542) (#130371)
Miss Islington (bot) [Wed, 26 Feb 2025 08:59:19 +0000 (09:59 +0100)]
[3.12] gh-130433: Update documentation for `MultipartConversionError` (GH-130436) (GH-130566)
(cherry picked from commit
b536e371044f9e9b1b34cc8276a01e67550b5428 )
Co-authored-by: Yuki Kobayashi <drsuaimqjgar@gmail.com>
Hugo van Kemenade [Wed, 26 Feb 2025 07:46:12 +0000 (09:46 +0200)]
[3.12] gh-108303: Fix and move `badsyntax_pep3120.py` (GH-109513) (#130540)
(cherry picked from commit
4dd47c63a97b3c39cd964ad12431fcdaf76dc823 )
Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Kanishk Pachauri [Tue, 25 Feb 2025 13:25:20 +0000 (18:55 +0530)]
[3.12] gh-130461: Remove unnecessary usages of `.. index::` directives in Doc/library/uuid.rst (#130526) (#130546)
Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
Bénédikt Tran [Tue, 25 Feb 2025 11:38:47 +0000 (12:38 +0100)]
[3.12] gh-130151: Fix reference leaks in `_hashlib.hmac_{new,digest}` (GH-130152) (#130539)
gh-130151: Fix reference leaks in `_hashlib.hmac_{new,digest}` (GH-130152)
* fix leak in `_hashlib.hmac_new`
* fix leak in `hmac_digest`
* fix exception type in `_hashlib.HMAC.copy`
(cherry picked from commit
071820113f11b8f6a21f98652d0840e10268114c )
Miss Islington (bot) [Tue, 25 Feb 2025 09:54:15 +0000 (10:54 +0100)]
[3.12] Fix a typo in code module test (GH-130530) (GH-130533)
(cherry picked from commit
56e337d32b88630f2c35458231cd61929f1be6d4 )
Co-authored-by: Tian Gao <gaogaotiantian@hotmail.com>
Miss Islington (bot) [Mon, 24 Feb 2025 16:10:27 +0000 (17:10 +0100)]
[3.12] gh-46236: Add docs for PyUnicode_GetDefaultEncoding() doc (GH-130335) (GH-130512)
* Clarify sys.getdefaultencoding() documentation
* Add missing documentation for PyUnicode_GetDefaultEncoding,
the C equivalent of sys.getdefaultencoding
(cherry picked from commit
9f25c1f012c8d432a93bf2dcad5f19a64dc00d3c )
Co-authored-by: RUANG (James Roy) <longjinyii@outlook.com>
Miss Islington (bot) [Mon, 24 Feb 2025 14:08:22 +0000 (15:08 +0100)]
[3.12] gh-127522: wsgiref: indicate that `start_response` objects should follow a specific protocol (GH-127525) (GH-130505)
(cherry picked from commit
39ba4b6619026bbe65c5844702a8a0bb6e75c4f7 )
Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
Miss Islington (bot) [Mon, 24 Feb 2025 04:01:30 +0000 (05:01 +0100)]
[3.12] gh-127805: Clarify Formatter initialization in logging.rst. (GH-127850) (#130393)
gh-127805: Clarify Formatter initialization in logging.rst. (GH-127850)
(cherry picked from commit
5d66c55c8ad0a0aeff8d06021ddca1d02c5f4416 )
Co-authored-by: UV <yuvrajpradhan667@gmail.com>
Miss Islington (bot) [Mon, 24 Feb 2025 03:58:42 +0000 (04:58 +0100)]
[3.12] gh-130160: use `.. program::` directive for documenting `idle` CLI (GH-130278) (#130495)
gh-130160: use `.. program::` directive for documenting `idle` CLI (GH-130278)
---------
(cherry picked from commit
0ff16115741aeaaaf7f963f68d5c575efb960277 )
Co-authored-by: Kanishk Pachauri <itskanishkp.py@gmail.com>
Adam Turner [Sat, 22 Feb 2025 21:06:13 +0000 (21:06 +0000)]
[3.12] Docs: Test presence of optional extensions with importlib (GH-130445) (#130466)
* [3.12] Docs: Test presence of optional extensions with importlib (GH-130445)
(cherry picked from commit
3cc9e867eba1ed139cf28c74b4a788bcc4801394 )
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Adam Turner [Sat, 22 Feb 2025 18:22:29 +0000 (18:22 +0000)]
[3.12] gh-121970: Replace `.. coroutine{method,function}` with `:async:` (GH-130448) (#130467)
(cherry picked from commit
5ec4bf86b7f4455432aebace996ef390ae3e9302 )
Co-authored-by: sobolevn <mail@sobolevn.me>
Miss Islington (bot) [Sat, 22 Feb 2025 16:13:31 +0000 (17:13 +0100)]
[3.12] Add measuring unit to `sys.getswitchinterval` docs (GH-130457) (#130459)
Add measuring unit to `sys.getswitchinterval` docs (GH-130457)
(cherry picked from commit
89d8b2d14bb6f7e5c4565b5c3f56d917e6134c89 )
Co-authored-by: sobolevn <mail@sobolevn.me>
Miss Islington (bot) [Sat, 22 Feb 2025 08:38:41 +0000 (09:38 +0100)]
[3.12] gh-129712: Document the wheels tags corresponding to each universal SDK. (GH-130389) (#130450)
Document the architectures supported by macOS universal SDK configuration flags,
and add details on wheel tag naming.
(cherry picked from commit
474c388740ca5f8060c074f517dd14c54409126f )
Co-authored-by: Russell Keith-Magee <russell@keith-magee.com>
Adam Turner [Sat, 22 Feb 2025 02:11:47 +0000 (02:11 +0000)]
[3.12] GH-121970: Replace custom abstract method directive with the ``:abstract:`` option (GH-129311) (#130440)
(cherry picked from commit
30e892473e0dfe5c3fecabcaac420cefe45e2ed4 )
Adam Turner [Sat, 22 Feb 2025 01:52:41 +0000 (01:52 +0000)]
[3.12] GH-103180: Set a timeout for every job in GitHub Actions (GH-130375) (#130432)
(cherry picked from commit
d0a1e5c222f9f43b492b28806e2a185a50d64500 )
Miss Islington (bot) [Sat, 22 Feb 2025 01:48:15 +0000 (02:48 +0100)]
[3.12] gh-130159: Fix list indentation in collections.abc (GH-130165) (#130438)
gh-130159: Fix list indentation in collections.abc (GH-130165)
(cherry picked from commit
8e96adf4532943360f09df04cd7d3a5d35f61a24 )
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Adam Turner [Sat, 22 Feb 2025 01:33:56 +0000 (01:33 +0000)]
[3.12] gh-128446: Skip Windows CI for Unix build system changes (GH-128450) (#130435)
(cherry picked from commit
b05fa90b21dd01bb836285cdd41920320b09e681 )
Authored-by: Adam Turner <9087854+aa-turner@users.noreply.github.com>
Co-authored-by: Srinivas Reddy Thatiparthy (తాటిపర్తి శ్రీనివాస్ రెడ్డి) <thatiparthysreenivas@gmail.com>
Co-authored-by: Adam Turner <9087854+aa-turner@users.noreply.github.com>
Miss Islington (bot) [Fri, 21 Feb 2025 17:48:46 +0000 (18:48 +0100)]
[3.12] gh-130285: Fix handling of zero or empty counts in random.sample() (gh-130291) (gh-130417)
Hugo van Kemenade [Fri, 21 Feb 2025 15:18:44 +0000 (17:18 +0200)]
[3.12] Convert change detection to a Python script (GH-129627) (#130370)
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
Co-authored-by: Sviatoslav Sydorenko (Святослав Сидоренко) <wk.cvs.github@sydorenko.org.ua>
Miss Islington (bot) [Fri, 21 Feb 2025 14:16:27 +0000 (15:16 +0100)]
[3.12] gh-129363: Change regrtest sequential mode output (GH-129476) (#130406)
gh-129363: Change regrtest sequential mode output (GH-129476)
First, write the test name without color. Then, write the test name
and the result with color. Each test is displayed twice.
(cherry picked from commit
f1b81c408fb83beeee519ae4fb9d3a36dd4522b3 )
Co-authored-by: Victor Stinner <vstinner@python.org>
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
Miss Islington (bot) [Fri, 21 Feb 2025 00:15:48 +0000 (01:15 +0100)]
[3.12] Fix outdated reference link in collections module (gh-130349) (gh-130387)
Hugo van Kemenade [Thu, 20 Feb 2025 23:32:35 +0000 (01:32 +0200)]
[3.12] Itertool recipe additions (gh-127483) (gh-130362)
Miss Islington (bot) [Thu, 20 Feb 2025 16:20:27 +0000 (17:20 +0100)]
[3.12] gh-129838: Don't redefine _Py_NO_SANITIZE_UNDEFINED (GH-129839) (#130365)
gh-129838: Don't redefine _Py_NO_SANITIZE_UNDEFINED (GH-129839)
Newer GCC versions accept both __attribute__((no_sanitize("undefined")))
and __attribute__((no_sanitize_undefined)) so check that the macro is
not already defined.
(cherry picked from commit
568db400ff07240a5ed6f263af281405ccaec716 )
Co-authored-by: Collin Funk <collin.funk1@gmail.com>
Miss Islington (bot) [Thu, 20 Feb 2025 15:50:37 +0000 (16:50 +0100)]
[3.12] gh-46236: Document PyUnicode_RSplit, PyUnicode_Partition and PyUnicode_RPartition (GH-130191) (#130361)
gh-46236: Document PyUnicode_RSplit, PyUnicode_Partition and PyUnicode_RPartition (GH-130191)
(cherry picked from commit
0f5b82169e12321fd2294bf534496ad42a682ac4 )
Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com>
Co-authored-by: Petr Viktorin <encukou@gmail.com>
Hugo van Kemenade [Thu, 20 Feb 2025 15:47:10 +0000 (17:47 +0200)]
[3.12] gh-119727: Add --single-process option to regrtest (GH-119728) (#130359)
Co-authored-by: Victor Stinner <vstinner@python.org>
Sam Gross [Thu, 20 Feb 2025 15:37:43 +0000 (10:37 -0500)]
[3.12] gh-129269: Exclude everything in sys.path in `test_coverage_ignore` (gh-130133) (gh-130358)
The `test_trace.test_coverage_ignore` test would fail if you had
`setuptools` installed, such as in `~/.local/lib/python3.xxx/site-packages/`.
Ignore everything in `sys.path` when running the test.
(cherry picked from commit
35925e952911aba97bfdaee85b09d734ceac4fea )
Miss Islington (bot) [Thu, 20 Feb 2025 14:20:00 +0000 (15:20 +0100)]
[3.12] [doc]: Update logging cookbook to mention domain socket configuration in a recipe. (GH-130348) (GH-130352)
(cherry picked from commit
8cbcf51d614815df3ab7ea557f04e6b4b386968e )
Miss Islington (bot) [Thu, 20 Feb 2025 13:39:09 +0000 (14:39 +0100)]
[3.12] gh-101100: Fix sphinx warnings in `readline.rst` (GH-130300) (#130347)
Co-authored-by: Yuki Kobayashi <drsuaimqjgar@gmail.com>
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
Miss Islington (bot) [Thu, 20 Feb 2025 12:16:19 +0000 (13:16 +0100)]
[3.12] gh-127750: Backport some tests for singledispatchmethod (GH-130309) (GH-130340) (GH-130341)
(cherry picked from commit
68c57d6f338ebc16be304e640493e29e1c7c3ef5 )
(cherry picked from commit
395335d0ff292a15e26575e06f603304d9161ee1 )
(cherry picked from commit
10b32054ad6bce821e3b40101d4414d025be6e36 )
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Miss Islington (bot) [Thu, 20 Feb 2025 11:45:42 +0000 (12:45 +0100)]
[3.12] gh-130250: use support.swap_attr() in test and don't assume we're beginning with a clean system state (GH-130342) (#130345)
gh-130250: use support.swap_attr() in test and don't assume we're beginning with a clean system state (GH-130342)
(cherry picked from commit
048ee2d5ec761296ef67f5c59aee1f24408b12db )
Co-authored-by: Irit Katriel <1055913+iritkatriel@users.noreply.github.com>
Miss Islington (bot) [Thu, 20 Feb 2025 08:49:51 +0000 (09:49 +0100)]
[3.12] gh-69001: Convert links to more usable buttons (GH-129591) (#130339)
gh-69001: Convert links to more usable buttons (GH-129591)
In Lib/idlelib/help_about.py, there are 2 links that are not underlined or colored, hence hard to tell that clicking works. All buttons might get converted to colored and underlined links in the future.
---------
(cherry picked from commit
ed831b95a231ef949da13a261b40ee1ea0e126d7 )
Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Miss Islington (bot) [Thu, 20 Feb 2025 07:53:58 +0000 (08:53 +0100)]
[3.12] gh-130130: Clarify `hash=False` docs in `dataclasses.field` (GH-130324) (#130336)
gh-130130: Clarify `hash=False` docs in `dataclasses.field` (GH-130324)
(cherry picked from commit
47ace539950fb675d5968736348f0d724ba199f0 )
Co-authored-by: Sabfo <alpha.sabfo@gmail.com>
Miss Islington (bot) [Thu, 20 Feb 2025 01:54:37 +0000 (02:54 +0100)]
[3.12] gh-130250: fix cleanup in test (impacts refleaks runs) (GH-130329) (#130331)
gh-130250: fix cleanup in test (impacts refleaks runs) (GH-130329)
(cherry picked from commit
c718c6be0f82af5eb0e57615ce323242155ff014 )
Co-authored-by: Irit Katriel <1055913+iritkatriel@users.noreply.github.com>
Miss Islington (bot) [Wed, 19 Feb 2025 22:01:32 +0000 (23:01 +0100)]
[3.12] gh-130250: fix regression in traceback.print_last (GH-130318) (#130326)
gh-130250: fix regression in traceback.print_last (GH-130318)
(cherry picked from commit
6c982aeb547528174f8bc843267f584d8b133d14 )
Co-authored-by: Irit Katriel <1055913+iritkatriel@users.noreply.github.com>
Miss Islington (bot) [Wed, 19 Feb 2025 19:24:21 +0000 (20:24 +0100)]
[3.12] gh-122876: Fix "End of lines" typo (GH-125310) (#130316)
Co-authored-by: za <za@python.or.id>
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
Hugo van Kemenade [Wed, 19 Feb 2025 11:46:45 +0000 (13:46 +0200)]
[3.12] CI: Make macOS required to succeed (GH-110362) (#130299)
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
Miss Islington (bot) [Tue, 18 Feb 2025 23:55:11 +0000 (00:55 +0100)]
[3.12] Docs: Upgrade Sphinx to 8.2 (GH-130171) (#130288)
Docs: Upgrade Sphinx to 8.2 (GH-130171)
(cherry picked from commit
736ad664e0c3be05fad76a764b68ffb700afb612 )
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
sobolevn [Tue, 18 Feb 2025 14:18:30 +0000 (17:18 +0300)]
[3.12] gh-130160: use `option` instead of `cmdoption` in `dis.rst` (GH-130255) (#130265)
Miss Islington (bot) [Tue, 18 Feb 2025 12:53:02 +0000 (13:53 +0100)]
[3.12] gh-130160: use `.. program::` directive for documenting `ensurepip` CLI (gh-130253) (gh-130258)
gh-130160: use `.. program::` directive for documenting `ensurepip` CLI (gh-130253)
(cherry picked from commit
8cd7f8bf8d6b62f30a8bba1f968eb0c593a8781a )
Co-authored-by: Kanishk Pachauri <itskanishkp.py@gmail.com>
Serhiy Storchaka [Tue, 18 Feb 2025 08:18:40 +0000 (10:18 +0200)]
[3.12] gh-130230: Add new tests for 3-arg pow() with Decimal (GH-130237) (GH-130247)
(cherry picked from commit
b93b7e566e5a4efe7f077af2083140e50bd2b08f )
Miss Islington (bot) [Mon, 17 Feb 2025 16:24:30 +0000 (17:24 +0100)]
[3.12] gh-130214: Document `PyEllipsis_Type` (GH-130215) (#130224)
gh-130214: Document `PyEllipsis_Type` (GH-130215)
(cherry picked from commit
fc8c99a8ce483db23fa624592457e350e99193f6 )
Co-authored-by: Yuki Kobayashi <drsuaimqjgar@gmail.com>
Miss Islington (bot) [Mon, 17 Feb 2025 16:01:27 +0000 (17:01 +0100)]
[3.12] gh-125741: Update `build.yml` for the new check_autoconf_regen job (GH-125772) (#130229)
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Hugo van Kemenade [Mon, 17 Feb 2025 13:42:19 +0000 (15:42 +0200)]
[3.12] CI: Use ImageOS (ubuntu24) instead of runner.os (Linux) in cache keys (GH-130200) (#130226)
Stan Ulbrych [Mon, 17 Feb 2025 13:07:59 +0000 (13:07 +0000)]
[3.12] gh-82045: Correct and deduplicate "isprintable" docs; add test. (GH-130125)
We had the definition of what makes a character "printable" documented in three places, giving two different definitions.
The definition in the comment on `_PyUnicode_IsPrintable` was inverted; correct that.
With that correction, the two definitions turn out to be equivalent -- but to confirm that, you have to go look up, or happen to know, that those are the only five "Other" categories and only three "Separator" categories in the Unicode character database. That makes it hard for the reader to tell whether they really are the same, or if there's some subtle difference in the intended semantics.
Fix that by cutting the C API docs' and the C comment's copies of the subtle details, in favor of referring to the Python-level docs. That ensures it's explicit that these are all meant to agree, and also lets us concentrate improvements to the wording in one place.
Speaking of which, borrow some ideas from the C comment, along with other tweaks, to hopefully add a bit more clarity to that one newly-centralized copy in the docs.
Also add a thorough test that the implementation agrees with this definition.
Co-authored-by: Greg Price <gnprice@gmail.com>
(cherry picked from commit
3402e133ef26736296c07992266a82b181a5d532 )
Miss Islington (bot) [Mon, 17 Feb 2025 09:14:13 +0000 (10:14 +0100)]
[3.12] gh-130193: Increase test coverage of gettext.c2py (GH-130208) (GH-130218)
(cherry picked from commit
fb2d325725dcc881868b576b9d0d9f4bf7f24fe0 )
Co-authored-by: Tomas R <tomas.roun8@gmail.com>
Miss Islington (bot) [Mon, 17 Feb 2025 08:25:20 +0000 (09:25 +0100)]
[3.12] gh-86069: Add more PyNumber_InPlacePower() tests (GH-130111) (GH-130212)
Test it with the third argument.
(cherry picked from commit
cfe41037eb5293a051846ddc0b4afdb7a5f60540 )
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Miss Islington (bot) [Sun, 16 Feb 2025 18:56:18 +0000 (19:56 +0100)]
[3.12] gh-118761: Revert "Improve import time of `subprocess` (GH-129427)" (GH-130201) (#130205)
gh-118761: Revert "Improve import time of `subprocess` (GH-129427)" (GH-130201)
* Revert "gh-118761: Improve import time of `subprocess` (GH-129427)"
This reverts commit
49f24650e4541456872490ec2b59d6d186204891 .
Also known as
f502c8f6a6db4be27c97a0e5466383d117859b7f in 3.13 (PR GH-129447)
Also known as
f65aa0d1bf7b636ab8f9d226429205854b24cd7a in 3.12 (PR GH-129448)
This caused bugs in the `__del__` finalizer:
https://github.com/python/cpython/issues/118761#issuecomment-
2661504264
---------
(cherry picked from commit
ae3064608935367c860182dc1b364631082ecdff )
Co-authored-by: Gregory P. Smith <greg@krypto.org>
Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
Miss Islington (bot) [Sun, 16 Feb 2025 13:52:55 +0000 (14:52 +0100)]
[3.12] gh-130185: Fix unintentionally skipped tests in `test_functools` (GH-130186) (#130189)
gh-130185: Fix unintentionally skipped tests in `test_functools` (GH-130186)
(cherry picked from commit
73d03005b028eb6e4d1a643f3ca7a1f5ff2040fc )
Co-authored-by: Tomas R <tomas.roun8@gmail.com>
Miss Islington (bot) [Sun, 16 Feb 2025 13:14:50 +0000 (14:14 +0100)]
[3.12] gh-127488: Add tests for Tools/i18n/msgfmt.py (GH-127540) (GH-130181)
(cherry picked from commit
361083b84b0db975058b2d1f50dcbfd36f072caf )
Co-authored-by: Tomas R <tomas.roun8@gmail.com>
Miss Islington (bot) [Sun, 16 Feb 2025 12:31:24 +0000 (13:31 +0100)]
[3.12] gh-130177: Fix unintentionally skipped tests in test_gettext (GH-130178) (GH-130184)
(cherry picked from commit
2e8044a4f74f5fc19e5249139c171403aff0118d )
Co-authored-by: Tomas R <tomas.roun8@gmail.com>
Miss Islington (bot) [Sun, 16 Feb 2025 11:04:07 +0000 (12:04 +0100)]
[3.12] gh-130169: Fix broken list markup in `Doc/c-api/function.rst` (GH-130174) (#130176)
gh-130169: Fix broken list markup in `Doc/c-api/function.rst` (GH-130174)
(cherry picked from commit
9837c2a21457e4eacabf606c44ec42d1962f11f1 )
Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
Miss Islington (bot) [Sat, 15 Feb 2025 06:11:38 +0000 (07:11 +0100)]
Doc: update term "namespace package" (GH-129251)
(cherry picked from commit
e65e9f90626a4c62da4d3500044f354b51e51dbb )
Co-authored-by: Inada Naoki <songofacandy@gmail.com>
Miss Islington (bot) [Sat, 15 Feb 2025 03:59:08 +0000 (04:59 +0100)]
[3.12] gh-130106: Fix a typo in unittest.mock doc (GH-130107) (#130144)
gh-130106: Fix a typo in unittest.mock doc (GH-130107)
(cherry picked from commit
d2e60d8e598b622573b68b80b4fbf98c021dd087 )
Co-authored-by: Srinivas Reddy Thatiparthy (తాటిపర్తి శ్రీనివాస్ రెడ్డి) <thatiparthysreenivas@gmail.com>
Miss Islington (bot) [Fri, 14 Feb 2025 17:45:28 +0000 (18:45 +0100)]
gh-128703: Fix mimetypes.guess_type for empty Content-Type in registry (GH-128854)
(cherry picked from commit
303043f5062c1e7ffb7907abde61dbf13c98f8e9 )
Co-authored-by: RUANG (James Roy) <longjinyii@outlook.com>
Pablo Galindo Salgado [Thu, 13 Feb 2025 01:42:24 +0000 (01:42 +0000)]
[3.12] gh-116042: Fix location for SyntaxErrors of invalid escapes in the tokenizer (GH-116049) (#130065)
(cherry picked from commit
56eda256336310a08d4beb75b998488cb359444b )
Miss Islington (bot) [Wed, 12 Feb 2025 22:55:30 +0000 (23:55 +0100)]
[3.12] gh-129912: Fix references to `Py_TPFLAGS_MANAGED_DICT` (gh-130044) (gh-130060)
(cherry picked from commit
791cdfe1416a591e240b8ffc6f10eb6f659c8277 )
Co-authored-by: Satyam Kumar <isatyamks@gmail.com>
Miss Islington (bot) [Wed, 12 Feb 2025 08:26:30 +0000 (09:26 +0100)]
[3.12] gh-59149: Setup documentation for IDLE on Linux and add section in Editors (GH-130003) (#130028)
---------
(cherry picked from commit
555ee43d929ad4b917db2caee3f2c10a2636832c )
Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
Co-authored-by: Petr Viktorin <encukou@gmail.com>
Tomas R. [Tue, 11 Feb 2025 23:31:44 +0000 (00:31 +0100)]
[3.12] gh-97850: Update the deprecation warning of `importlib.abc.Loader.load_module` (GH-129855) (GH-130017)
(cherry picked from commit
aa81a6f6e4f265565da9781d0bf95c7d16ddd961 )
Hugo van Kemenade [Tue, 11 Feb 2025 21:31:48 +0000 (23:31 +0200)]
[3.12] gh-101100: Docs: Fix some typos in the document (GH-129988) (#129998)
Co-authored-by: Yuki Kobayashi <drsuaimqjgar@gmail.com>
Co-authored-by: Sergey B Kirpichev <skirpichev@gmail.com>
Miss Islington (bot) [Mon, 10 Feb 2025 16:36:10 +0000 (17:36 +0100)]
[3.12] gh-46236: Document `PyUnicode_DecodeCodePageStateful` (GH-127934) (GH-129962)
gh-46236: Document `PyUnicode_DecodeCodePageStateful` (GH-127934)
(cherry picked from commit
8d9d3e4ecb4c908df6560b54138dd5af73b3ed47 )
Co-authored-by: Yuki Kobayashi <drsuaimqjgar@gmail.com>
Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
Co-authored-by: Peter Bierma <zintensitydev@gmail.com>
Miss Islington (bot) [Mon, 10 Feb 2025 14:29:57 +0000 (15:29 +0100)]
[3.12] gh-127712: Fix `secure` argument of `logging.handlers.SMTPHandler` (GH-127726) (GH-129956)
(cherry picked from commit
d7672e5d5a7b9580a72dbe75d3a9e8840bcc604c )
Miss Islington (bot) [Mon, 10 Feb 2025 11:26:18 +0000 (12:26 +0100)]
[3.12] gh-129143: Fix incorrect documentation for logging.Handler.close(). (GH-129950) (GH-129952)
(cherry picked from commit
7c156a63d3d5aadff0d40af73c0f622f7a0fcea5 )
Miss Islington (bot) [Mon, 10 Feb 2025 10:08:18 +0000 (11:08 +0100)]
[3.12] gh-126554: correct detection of `gcc` for `TestNullDlsym.test_null_dlsym` (GH-129872) (#129945)
gh-126554: correct detection of `gcc` for `TestNullDlsym.test_null_dlsym` (GH-129872)
In case gcc is not available, the test will fail with FileNotFoundError.
So catch the exception to skip the test correctly.
(cherry picked from commit
978211c8a8646b050a8d687ca720f934fcce112c )
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Co-authored-by: Peter Marko <peter.marko@siemens.com>
Miss Islington (bot) [Mon, 10 Feb 2025 05:10:02 +0000 (06:10 +0100)]
[3.12] gh-68400: Remove outdated 2.7 comment (GH-129919) (#129938)
(cherry picked from commit
d9bf3c16e53f04b600e42cd0ac560820e3522b57 )
Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
Erlend E. Aasland [Mon, 10 Feb 2025 00:14:40 +0000 (01:14 +0100)]
[3.12] gh-129603: Don't segfault if sqlite3.Row description is None (#129604) (#129924)
(cherry picked from commit
7e6ee50b6b8c760bcefb92ab4ddbc3d85d37a834 )
Miss Islington (bot) [Sun, 9 Feb 2025 15:39:23 +0000 (16:39 +0100)]
[3.12] gh-129892: Doc: Remove unnecessary role directive in graphlib.py (GH-129896) (#129905)
gh-129892: Doc: Remove unnecessary role directive in graphlib.py (GH-129896)
Change `:exec:ValueError` to `ValueError` in `TopologicalSorter.done()` docstring
(cherry picked from commit
c53730171f18b90202aa0918b3c05412222bb1ec )
Co-authored-by: Nikola Savic <76233425+nikolasavic3@users.noreply.github.com>
Miss Islington (bot) [Sun, 9 Feb 2025 09:19:55 +0000 (10:19 +0100)]
[3.12] gh-129873: IDLE: Improve help.py's method of parsing HTML (GH-129859) (#129885)
gh-129873: IDLE: Improve help.py's method of parsing HTML (GH-129859)
In `help.copy_strip`, only copy the text `<section>`. In `help.HelpParser.handle_starttag` and elsewhere, remove code to skip the no longer present html. Add a reminder at the top of idle.rst to run copy_strip after changes.
---------
(cherry picked from commit
6fbf15f98e04f582aeccf5334a94840149ff7cd5 )
Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Terry Jan Reedy [Sun, 9 Feb 2025 07:32:52 +0000 (02:32 -0500)]
[3.12] gh-129876: Initial 3.14 News3.txt entries (GH-129881) (#129883)
Miss Islington (bot) [Sun, 9 Feb 2025 06:30:46 +0000 (07:30 +0100)]
[3.12] gh-112953: Update news to finish 3.13 as main (GH-129877) (#129879)
Entry for patch to 3.13.rc3
(cherry picked from commit
f72977b2f4a29063ae3019e50360f4af869f4149 )
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Miss Islington (bot) [Sat, 8 Feb 2025 20:13:40 +0000 (21:13 +0100)]
[3.12] gh-64414: mention AF_INET6 and IPv6 in socketserver docs. (GH-129866) (#129869)
gh-64414: mention AF_INET6 and IPv6 in socketserver docs. (GH-129866)
mention AF_INET6 and IPv6 in socketserver docs.
(cherry picked from commit
5ce70ad129d2e34a09f8ae6ee0542f4f996fb8ec )
Co-authored-by: Gregory P. Smith <greg@krypto.org>
Miss Islington (bot) [Sat, 8 Feb 2025 19:42:43 +0000 (20:42 +0100)]
[3.12] gh-129699: Add description to IDLE doc title (GH-129727) (#129865)
gh-129699: Add description to IDLE doc title (GH-129727)
Also extend the 'idlelib' section header. These additions affect both the displayed idle.html file and the contents.html file displayed by clicking the Complete table of contents link on the main docs.python.org page. (The module index entries are generated from the module name and synopsis within module files.)
---------
(cherry picked from commit
33a7094aa680bca66582fec4dcda7d150eb90cd8 )
Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Bénédikt Tran [Sat, 8 Feb 2025 14:10:41 +0000 (15:10 +0100)]
[3.12] Add multinomial to the itertools recipes docs (gh-129760) (gh-129854)
Miss Islington (bot) [Thu, 6 Feb 2025 17:53:30 +0000 (18:53 +0100)]
[3.12] gh-112020: Rework socketserver examples to be correct (GH-129741) (#129744)
gh-112020: Rework socketserver examples to be correct.
Outdated code updated, the BaseRequestHandler example is now much more
illustrative instead of the bad idea of a single recv() call for TCP.
tested, they now work.
(cherry picked from commit
78377c788e02e91bf43d290d69317198a2e563fd )
Co-authored-by: Gregory P. Smith <greg@krypto.org>
Miss Islington (bot) [Thu, 6 Feb 2025 17:45:33 +0000 (18:45 +0100)]
[3.12] Remove an inaccurate note from `socket.recv` (GH-129733) (#129735)
Remove an inaccurate note from `socket.recv` (GH-129733)
Remove an inaccurate note from socket.recv.
(cherry picked from commit
ded54c3baa57f6727be809f13633b393241c164a )
Co-authored-by: Gregory P. Smith <greg@krypto.org>
Adam Turner [Thu, 6 Feb 2025 17:33:13 +0000 (17:33 +0000)]
[3.12] GH-121970: Extract ``implementation_detail`` into a new extension (GH-129663) (#129740)
(cherry picked from commit
4d56c40440c9fd4499d61d24977336d8cd8d8d83 )
🇺🇦 Sviatoslav Sydorenko (Святослав Сидоренко) [Thu, 6 Feb 2025 16:46:00 +0000 (17:46 +0100)]
[3.12] Merge TSAN test matrices in CI (#123278) (#129674)
Miss Islington (bot) [Thu, 6 Feb 2025 08:20:31 +0000 (09:20 +0100)]
[3.12] gh-86206: Change IDLE splash line (GH-129698) (#129718)
Replace references to boilerplate files available in About IDLE and instead suggest clicking Help menu.
(cherry picked from commit
d83a8a26f5e321b26bec59f5fd47c9c46c16ab12 )
Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Miss Islington (bot) [Thu, 6 Feb 2025 07:03:21 +0000 (08:03 +0100)]
[3.12] gh-69001: Replace maintainer email in IDLE credits (GH-129588) (#129714)
Instead, anyone requesting credit should submit a PR with contribution summary.
(Also fix typo in existing name.)
(cherry picked from commit
76e018294801ab95f30756c702b63bf6b4c23310 )
Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
Miss Islington (bot) [Wed, 5 Feb 2025 11:39:58 +0000 (12:39 +0100)]
[3.12] gh-129660: Do not use test_embed in PGO profile builds (GH-129662) (#129685)
[3.13] gh-129660: Do not use test_embed in PGO profile builds (GH-129662)
(cherry picked from commit
19ceb342b5cc9d9da51dfb6d11dab078c3d43ff1 )
Co-authored-by: neonene <53406459+neonene@users.noreply.github.com>
Thomas Wouters [Tue, 4 Feb 2025 19:39:37 +0000 (20:39 +0100)]
Merge branch '3.12' of https://github.com/python/cpython into 3.12
Thomas Wouters [Tue, 4 Feb 2025 19:37:20 +0000 (20:37 +0100)]
Post 3.12.9
Miss Islington (bot) [Tue, 4 Feb 2025 14:44:02 +0000 (15:44 +0100)]
[3.12] gh-128772: Fix pydoc for methods with __module__ is None (GH-129177) (GH-129654)
(cherry picked from commit
979d76620990e6f8d68fa63e0ae0db1ec5b4d14c )
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Miss Islington (bot) [Tue, 4 Feb 2025 14:42:14 +0000 (15:42 +0100)]
[3.12] gh-129350: Make tests for glob with trailing slash more strict (GH-129376) (GH-129652)
Test that the trailing pathname separator is preserved.
Multiple trailing pathname separators are only preserved if the pattern
does not contain metacharacters, otherwise only one trailing pathname
separator is preserved. This is rather an implementation detail.
(cherry picked from commit
8b5c8508c7f5d98b09792e159ef2396c73da68cd )
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Thomas Wouters [Tue, 4 Feb 2025 14:37:05 +0000 (15:37 +0100)]
Python 3.12.9
Serhiy Storchaka [Tue, 4 Feb 2025 14:30:57 +0000 (16:30 +0200)]
[3.12] Use roles :data: and :const: for referencing module variables (GH-129507) (GH-129650)
(cherry picked from commit
078ab828b9a21ed0e683941bd141d5017b5f62d9 )