]> git.ipfire.org Git - thirdparty/Python/cpython.git/log
thirdparty/Python/cpython.git
2 weeks ago[3.15] gh-82151: Update and improve urlsplit docstring (GH-152985) (#153154)
Miss Islington (bot) [Tue, 7 Jul 2026 00:24:44 +0000 (02:24 +0200)] 
[3.15] gh-82151: Update and improve urlsplit docstring (GH-152985) (#153154)

gh-82151: Update and improve urlsplit docstring (GH-152985)

(cherry picked from commit ad54b91b9fa4c5d12f155bb09138dff21a2bdec3)

Co-authored-by: Pranav Choudhary <chaudharyypranav@gmail.com>
Co-authored-by: idomic <michael.ido@gmail.com>
Co-authored-by: Senthil Kumaran <senthil@python.org>
2 weeks ago[3.15] gh-153068: Preserve cprofile enable errors (GH-153070) (#153241)
Miss Islington (bot) [Tue, 7 Jul 2026 00:11:55 +0000 (02:11 +0200)] 
[3.15] gh-153068: Preserve cprofile enable errors (GH-153070) (#153241)

2 weeks ago[3.15] gh-140729: Fix the cProfile module when the executed script contains calls...
Miss Islington (bot) [Tue, 7 Jul 2026 00:10:18 +0000 (02:10 +0200)] 
[3.15] gh-140729: Fix the cProfile module when the executed script contains calls to multiprocessing.Process (GH-144715) (#153243)

2 weeks ago[3.15] gh-153200: Fix math.isqrt() for int subclasses with overridden comparison...
Miss Islington (bot) [Mon, 6 Jul 2026 19:17:26 +0000 (21:17 +0200)] 
[3.15] gh-153200: Fix math.isqrt() for int subclasses with overridden comparison operators (GH-153203) (GH-153223)

The final check-and-correct comparison in the arbitrary precision path
could call a comparison operator overridden in an int subclass.
Compare by value with int's tp_richcompare.
(cherry picked from commit 3a1b5473f217fc493f743c9ca8b877d2e76f8e6b)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
2 weeks ago[3.15] gh-150880: Clarify DirEntry.path construction semantics (GH-153218) (GH-153219)
Miss Islington (bot) [Mon, 6 Jul 2026 17:23:15 +0000 (19:23 +0200)] 
[3.15] gh-150880: Clarify DirEntry.path construction semantics (GH-153218) (GH-153219)

gh-150880: Clarify DirEntry.path construction semantics (GH-153218)
(cherry picked from commit 53661afabd2b4a9c92230ee7024dc42782164f8e)

Co-authored-by: Zain Nadeem <zainnadeemzainnadeem80@gmail.com>
2 weeks ago[3.15] gh-152682: Fix NULL dereference on OOM in `symtable_visit_type_param_bound_or_...
Miss Islington (bot) [Mon, 6 Jul 2026 16:36:32 +0000 (18:36 +0200)] 
[3.15] gh-152682: Fix NULL dereference on OOM in `symtable_visit_type_param_bound_or_default` (GH-152684) (#152695)

In `symtable_visit_type_param_bound_or_default()`, when a reserved name
(e.g. `__classdict__`) is used as a type parameter, `PyUnicode_FromFormat()`
is called to build the SyntaxError message. If the allocation fails and
returns NULL, the subsequent `PyErr_SetObject()` and `Py_DECREF()` calls
would dereference NULL, causing a segfault.

Fix by returning 0 immediately when `PyUnicode_FromFormat()` returns NULL.
This propagates the MemoryError set by `PyUnicode_FromFormat()`.

The bug was introduced in gh-128632 (commit 891c61c).
(cherry picked from commit 10ed03edf128ed1101ab8d04bcd715f2033fec55)

Co-authored-by: Petr Vaganov <petrvaganoff@gmail.com>
* Remove test

---------

Co-authored-by: Petr Vaganov <petrvaganoff@gmail.com>
Co-authored-by: Stan Ulbrych <stan@python.org>
2 weeks ago[3.15] Docs: Link to the `contextlib.chdir` context manager in the `os.chdir` docs...
Miss Islington (bot) [Mon, 6 Jul 2026 15:49:33 +0000 (17:49 +0200)] 
[3.15] Docs: Link to the `contextlib.chdir` context manager in the `os.chdir` docs (GH-153152) (#153212)

(cherry picked from commit f155dbed4ef30dec5d00b8b09524b0d9f63965bc)

Co-authored-by: Cody Maloney <cmaloney@users.noreply.github.com>
Co-authored-by: Stan Ulbrych <stan@python.org>
2 weeks ago[3.15] gh-152849: Fix `OverflowError` message for out-of-range timestamps in the...
Miss Islington (bot) [Mon, 6 Jul 2026 15:25:47 +0000 (17:25 +0200)] 
[3.15] gh-152849: Fix `OverflowError` message for out-of-range timestamps in the `time` module (GH-152850) (#153209)

(cherry picked from commit 2d7a74ece7884c9a5f52cc6ac38a6e7ee691b26c)

Co-authored-by: tonghuaroot (童话) <tonghuaroot@gmail.com>
Co-authored-by: Stan Ulbrych <stan@python.org>
2 weeks ago[3.15] gh-148286: Remove invalid test in `test_decodeescape` (GH-153187) (#153204)
Miss Islington (bot) [Mon, 6 Jul 2026 15:22:23 +0000 (17:22 +0200)] 
[3.15] gh-148286: Remove invalid test in `test_decodeescape` (GH-153187) (#153204)

(cherry picked from commit 8477652cc122e744bcc70c1e133905bcbe2d8516)

Co-authored-by: Stan Ulbrych <stan@python.org>
2 weeks ago[3.15] Add tests for syntax error messages that had no test coverage (GH-153192)...
Miss Islington (bot) [Mon, 6 Jul 2026 14:20:55 +0000 (16:20 +0200)] 
[3.15] Add tests for syntax error messages that had no test coverage (GH-153192) (GH-153196)

Add tests for syntax error messages that had no test coverage (GH-153192)

"illegal target for annotation" and "cannot use dict unpacking here"
were not tested at all, and "f-string: expecting '!', or ':', or '}'"
was only tested for its t-string variant.
(cherry picked from commit 836b2069c86e25cf9456e9210bb612e5166d0779)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
2 weeks ago[3.15] gh-146531: Skip hanging `wm iconbitmap` test on macOS 26 Intel (GH-148032...
Miss Islington (bot) [Mon, 6 Jul 2026 12:56:14 +0000 (14:56 +0200)] 
[3.15] gh-146531: Skip hanging `wm iconbitmap` test on macOS 26 Intel (GH-148032) (#153190)

Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
2 weeks ago[3.15] gh-145098: Use `macos-26-intel` instead of `macos-15-intel` (GH-149991) (...
Miss Islington (bot) [Mon, 6 Jul 2026 09:50:26 +0000 (11:50 +0200)] 
[3.15] gh-145098: Use `macos-26-intel` instead of `macos-15-intel` (GH-149991) (#153179)

Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
2 weeks ago[3.15] gh-148765: Fix description of *include_hidden* parameter in `glob.glob()`...
Miss Islington (bot) [Mon, 6 Jul 2026 09:33:36 +0000 (11:33 +0200)] 
[3.15] gh-148765: Fix description of *include_hidden* parameter in `glob.glob()` docs (GH-148768) (#153173)

(cherry picked from commit db3a4773e1e5fc1a30597d9e08bcbe41d27e5bbb)

Co-authored-by: Eoin Shaughnessy <45000144+EoinTrial@users.noreply.github.com>
Co-authored-by: Stan Ulbrych <stan@python.org>
2 weeks ago[3.15] gh-153141: Fix mutable default argument in _SharedMemoryTracker.__init__ ...
Miss Islington (bot) [Sun, 5 Jul 2026 19:36:51 +0000 (21:36 +0200)] 
[3.15] gh-153141: Fix mutable default argument in _SharedMemoryTracker.__init__ (GH-153142) (#153145)

gh-153141: Fix mutable default argument in _SharedMemoryTracker.__init__ (GH-153142)

Fix default argument for segment_names in _SharedMemoryTracker constructor to not use a mutable list.
(cherry picked from commit d733b104d53e96584a6881d2772df65ad82573a0)

Co-authored-by: Vineet Kumar <108144301+whyvineet@users.noreply.github.com>
2 weeks ago[3.15] gh-105708: 'V' could be case insensitive for IPvFuture hostnames (GH-105709...
Miss Islington (bot) [Sun, 5 Jul 2026 17:52:46 +0000 (19:52 +0200)] 
[3.15] gh-105708: 'V' could be case insensitive for IPvFuture hostnames (GH-105709) (#153138)

gh-105708: 'V' could be case insensitive for IPvFuture hostnames (GH-105709)

* gh-105708: 'V' could be case insensitive for IPvFuture hostnames

* gh-105708: 'V' could be case insensitive for IPvFuture hostnames & checking empty hostnames

* 📜🤖 Added by blurb_it.

* Fix the Merge changing \z to \Z.

* Fixed the News Entry.

* Fix the lint.

---------
(cherry picked from commit a47a66ccef0f98fcf088bc260ca14b889efa9b04)

Co-authored-by: Chandra <csreddy1998@gmail.com>
Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
Co-authored-by: Senthil Kumaran <senthil@python.org>
2 weeks ago[3.15] gh-143921: Narrow the control character check in imaplib commands (GH-153067...
Miss Islington (bot) [Sun, 5 Jul 2026 15:58:48 +0000 (17:58 +0200)] 
[3.15] gh-143921: Narrow the control character check in imaplib commands (GH-153067) (GH-153135)

Only NUL, CR and LF are rejected now.  Other control characters are
valid in quoted strings and can occur in mailbox names returned by
the server, so they are now accepted and sent quoted.
(cherry picked from commit d0921efb665aff26b378f495e5ff84f7e3fe649d)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
2 weeks ago[3.15] gh-68147: Fix RFC references in imaplib (GH-153126) (GH-153130)
Miss Islington (bot) [Sun, 5 Jul 2026 14:41:39 +0000 (16:41 +0200)] 
[3.15] gh-68147: Fix RFC references in imaplib (GH-153126) (GH-153130)

Refer to RFC 3501, which obsoleted RFC 2060.  "]" is disallowed
in flags, not in tags.
(cherry picked from commit 74a2438bf783077cf49460ed0fed8853675fb103)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
2 weeks ago[3.15] gh-149930: Clarify imaplib response helper types (GH-149963) (GH-153123)
Miss Islington (bot) [Sun, 5 Jul 2026 13:27:34 +0000 (15:27 +0200)] 
[3.15] gh-149930: Clarify imaplib response helper types (GH-149963) (GH-153123)

(cherry picked from commit d2d415b9761a539c37ea4f950df4e9aab0eca6ed)

Co-authored-by: Savage Mechanic <savagemechanic@github.com>
Co-authored-by: savagemechanic <20458938+savagemechanic@users.noreply.github.com>
2 weeks ago[3.15] gh-79638: Restore "Treat an unreachable robots.txt as disallow all" (GH-152525...
Miss Islington (bot) [Sun, 5 Jul 2026 11:44:44 +0000 (13:44 +0200)] 
[3.15] gh-79638: Restore "Treat an unreachable robots.txt as disallow all" (GH-152525) (GH-153107)

This change was accidentally reverted by f0daba1652c (gh-106693,
GH-149514), which only intended to revert the ob_sval change.
The tests were already restored by GH-149569.
(cherry picked from commit 70100b9ea0b43a95226eee45652a5735bb91e9c7)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2 weeks ago[3.15] gh-69134: Wait until mapped in SimpleDialog keyboard tests (GH-152690) (GH...
Serhiy Storchaka [Sun, 5 Jul 2026 11:42:24 +0000 (14:42 +0300)] 
[3.15] gh-69134: Wait until mapped in SimpleDialog keyboard tests (GH-152690) (GH-153104)

The SimpleDialog keyboard tests generate key events after focus_force(),
which on Windows are dropped until the toplevel is mapped, so they could
fail intermittently (seen on the Windows10 buildbot as
test_return_no_default).  Wait until the window is mapped in these tests,
as GH-152599 did for the other keyboard tests.

(cherry picked from commit 7d619c2fea131722d0bfdad150c081c44cc0abd7)

Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
2 weeks ago[3.15] Fix minor typos in 'Compound statements' docs (GH-149666) (#153113)
Miss Islington (bot) [Sun, 5 Jul 2026 11:31:55 +0000 (13:31 +0200)] 
[3.15] Fix minor typos in 'Compound statements' docs (GH-149666) (#153113)

(cherry picked from commit 856049a9d99119ad74cd991fa8f8a72ebc909122)

Co-authored-by: Jonathan Dung <jonathandung@yahoo.com>
Co-authored-by: Stan Ulbrych <stan@python.org>
2 weeks ago[3.15] gh-76607: Improve documentation of the tkinter cursor option (GH-152481) ...
Miss Islington (bot) [Sun, 5 Jul 2026 11:24:25 +0000 (13:24 +0200)] 
[3.15] gh-76607: Improve documentation of the tkinter cursor option (GH-152481) (GH-153110)

Link to the cursors(3tk) manual page for the available cursor names and
note that they are platform-dependent.
(cherry picked from commit ea5703735f2ff4ba7bc3b0c7e746a44cb9b25081)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
2 weeks ago[3.15] gh-54930: Send a status line in error responses to malformed request lines...
Miss Islington (bot) [Sun, 5 Jul 2026 11:22:09 +0000 (13:22 +0200)] 
[3.15] gh-54930: Send a status line in error responses to malformed request lines (GH-152980) (GH-153092)

Previously such error responses were sent in the bare HTTP/0.9 style,
without a status line and headers.
(cherry picked from commit 2ab620b41af57e24c11c131bec02f682561ecfaa)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
2 weeks ago[3.15] gh-123193: Document tkinter Variable lifetime (GH-152625) (GH-153098)
Miss Islington (bot) [Sun, 5 Jul 2026 11:15:56 +0000 (13:15 +0200)] 
[3.15] gh-123193: Document tkinter Variable lifetime (GH-152625) (GH-153098)

A Tk variable wrapper unsets its Tcl variable when garbage collected, so a
reference must be kept while a widget uses it.  Otherwise Tk recreates the Tcl
variable but never unsets it again, leaking it.
(cherry picked from commit 820b6ca22d72482e2e68dd738cc370535c83655e)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
2 weeks ago[3.15] gh-75952: Document negative offsets in tkinter geometry strings (GH-152531...
Miss Islington (bot) [Sun, 5 Jul 2026 11:15:42 +0000 (13:15 +0200)] 
[3.15] gh-75952: Document negative offsets in tkinter geometry strings (GH-152531) (GH-153101)

Tk geometry strings can contain a negative offset (e.g. 200x100+-9+-8)
when a window edge is positioned beyond the corresponding screen edge.
Note this in the geometry() and winfo_geometry() documentation.
(cherry picked from commit 19b5e8e1f510eb2fdd3f6261006b61f8cf441101)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
2 weeks ago[3.15] Fix various typos in the `http.server` docs (GH-153089) (#153096)
Miss Islington (bot) [Sun, 5 Jul 2026 11:07:29 +0000 (13:07 +0200)] 
[3.15] Fix various typos in the `http.server` docs (GH-153089) (#153096)

(cherry picked from commit 99b4cdbfa1619a3901f8cf87d3b5fe8d4894e3e7)

Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
2 weeks ago[3.15] gh-150459: Fix `SyntaxError` message for `from x lazy import y` (GH-150877...
sobolevn [Sun, 5 Jul 2026 10:41:56 +0000 (13:41 +0300)] 
[3.15] gh-150459: Fix `SyntaxError` message for `from x lazy import y` (GH-150877) (#153090)

(cherry picked from commit ec5f154e33f5d62257d041dd28aad1fe785fa3db)

2 weeks ago[3.15] gh-151945: fix Sphinx reference warnings in `http.server` docs (GH-153084...
Miss Islington (bot) [Sun, 5 Jul 2026 09:33:42 +0000 (11:33 +0200)] 
[3.15] gh-151945: fix Sphinx reference warnings in `http.server` docs (GH-153084) (#153085)

gh-151945: fix Sphinx reference warnings in `http.server` docs (GH-153084)
(cherry picked from commit 9f9787d83462f5b44cb59e3c69e7c1799612a33f)

Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
2 weeks ago[3.15] gh-153030: Fix quadratic complexity in incremental parsing in HTMLParser ...
Miss Islington (bot) [Sun, 5 Jul 2026 08:57:20 +0000 (10:57 +0200)] 
[3.15] gh-153030: Fix quadratic complexity in incremental parsing in HTMLParser (GH-153031) (GH-153038)

When an unterminated construct (e.g. a tag or comment) spanned many
feed() calls, rescanning the growing buffer and concatenating new data
onto it were both quadratic.  New data is now accumulated in a list and
only joined and parsed once enough has piled up.
(cherry picked from commit bcf98ddbc40ec9b3ee87da0124a5660b19b7e606)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
2 weeks ago[3.15] gh-66335: Test uppercase IMAP4 command names (GH-152876) (GH-153080)
Miss Islington (bot) [Sun, 5 Jul 2026 08:40:12 +0000 (10:40 +0200)] 
[3.15] gh-66335: Test uppercase IMAP4 command names (GH-152876) (GH-153080)

(cherry picked from commit 3cd6b7406442ad976c6651b9fba6f078971cdf10)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Co-authored-by: Milan Oberkirch <zvyn@oberkirch.org>
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2 weeks ago[3.15] Remove PDF images (GH-145977) (#153064)
Miss Islington (bot) [Sun, 5 Jul 2026 08:26:29 +0000 (10:26 +0200)] 
[3.15] Remove PDF images (GH-145977) (#153064)

(cherry picked from commit 5616505b443b13d9f5766dedcf6c0b43167705b6)

Co-authored-by: Stan Ulbrych <stan@python.org>
Co-authored-by: Maciej Olko <maciej.olko@affirm.com>
2 weeks ago[3.15] gh-151819: Clarify the conditional-pattern email example in re docs (GH-153072...
Miss Islington (bot) [Sun, 5 Jul 2026 08:23:10 +0000 (10:23 +0200)] 
[3.15] gh-151819: Clarify the conditional-pattern email example in re docs (GH-153072) (GH-153073)

The example pattern does not fail to match '<user@host.com' outright --
re.search finds 'user@host.com' in it; it only fails to match the
whole string.  Reword to say so.
(cherry picked from commit fe9c7213e6576e27ebff6ef039706cd463593310)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
2 weeks ago[3.15] gh-67512: Document IMAP4.append() flags argument (GH-149907) (GH-153078)
Miss Islington (bot) [Sun, 5 Jul 2026 08:05:51 +0000 (10:05 +0200)] 
[3.15] gh-67512: Document IMAP4.append() flags argument (GH-149907) (GH-153078)

(cherry picked from commit 5f8d9d35753e22946880d4fefb123e8234706266)

Co-authored-by: Savage Mechanic <savagemechanic@github.com>
2 weeks ago[3.15] gh-40038: Quote imaplib command arguments when necessary (GH-152703) (GH-153066)
Serhiy Storchaka [Sun, 5 Jul 2026 06:55:59 +0000 (09:55 +0300)] 
[3.15] gh-40038: Quote imaplib command arguments when necessary (GH-152703) (GH-153066)

Argument quoting was inadvertently disabled when imaplib was ported to
Python 3 (bpo-1210 commented out the ``_checkquote()`` call, bpo-9638
then removed it), so since Python 3.0 commands failed for arguments
containing protocol-sensitive characters, such as a space in a mailbox
name.

Quoting is restored and reimplemented per the RFC 3501 grammar, so that
arguments that need quoting are escaped and quoted, while flags, sequence
sets and list wildcards are left intact.

For backward compatibility, an argument already enclosed in double quotes
is left unchanged, so code that quotes arguments itself keeps working.
(cherry picked from commit 600e86490fddf4732e8b993058ca011cc6387464)

Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2 weeks ago[3.15] Add "new in 3.15" comments to idlelib (GH-153052) (#153054)
Miss Islington (bot) [Sun, 5 Jul 2026 02:28:53 +0000 (04:28 +0200)] 
[3.15] Add "new in 3.15" comments to idlelib (GH-153052) (#153054)

Add "new in 3.15" comments to idlelib (GH-153052)

Lazy keyword added to colorizer and test in PR-GH-142351.
Tested NameError hint expanded in PR-GH-144299.
(cherry picked from commit 0621639e8fc0084af15550651198c9e221b6619d)

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
2 weeks ago[3.15] gh-152718: Reject oversized table counts in the profiling binary reader (GH...
Miss Islington (bot) [Sat, 4 Jul 2026 23:27:41 +0000 (01:27 +0200)] 
[3.15] gh-152718: Reject oversized table counts in the profiling binary reader (GH-152719) (#153050)

gh-152718: Reject oversized table counts in the profiling binary reader (GH-152719)
(cherry picked from commit 8e580b068500feec5d6cc5e5a3e6072e8996fb25)

Co-authored-by: tonghuaroot (童话) <tonghuaroot@gmail.com>
2 weeks ago[3.15] gh-151378: Fix unbounded memory growth when recording binary and the thread...
Miss Islington (bot) [Sat, 4 Jul 2026 19:34:15 +0000 (21:34 +0200)] 
[3.15] gh-151378: Fix unbounded memory growth when recording binary and the thread is sleeping (GH-152089) (#153047)

gh-151378: Fix unbounded memory growth when recording binary and the thread is sleeping (GH-152089)
(cherry picked from commit 639a5525fb1b54973dcf55a636efc10be4042239)

Co-authored-by: Maurycy Pawłowski-Wieroński <maurycy@maurycy.com>
2 weeks ago[3.15] gh-151945: Fix all reference warnings and various solecisms in the `http.cooki...
Miss Islington (bot) [Sat, 4 Jul 2026 15:11:20 +0000 (17:11 +0200)] 
[3.15] gh-151945: Fix all reference warnings and various solecisms in the `http.cookiejar` docs (GH-152816) (#153032)

(cherry picked from commit 66c76fa6737d497cd3c735f75e67a5ca52eceb15)

Co-authored-by: Harjoth Khara <harjoth.khara@gmail.com>
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
Co-authored-by: Stan Ulbrych <stan@python.org>
2 weeks ago[3.15] gh-152068: Reset PyREPL Colors on prompt finish (GH-152108) (#153029)
Miss Islington (bot) [Sat, 4 Jul 2026 13:49:59 +0000 (15:49 +0200)] 
[3.15] gh-152068: Reset PyREPL Colors on prompt finish (GH-152108) (#153029)

2 weeks ago[3.15] gh-135661: Fix abrupt closing of empty comment in HTMLParser (GH-153007) ...
Miss Islington (bot) [Sat, 4 Jul 2026 12:36:03 +0000 (14:36 +0200)] 
[3.15] gh-135661: Fix abrupt closing of empty comment in HTMLParser (GH-153007) (GH-153024)

An abruptly closed empty comment ("<!-->" or "<!--->") no longer extends
up to a later "-->" in the same feed() call.

test_htmlparser now also feeds each string source as a single chunk, in
addition to one character at a time, to exercise different input buffering.
(cherry picked from commit ed370d3337c1ac4f7295b444a4807c0b72287608)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
2 weeks ago[3.15] gh-152851: fix a crash when copying a BLAKE-2s/2b object (GH-153008) (#153011)
Miss Islington (bot) [Sat, 4 Jul 2026 10:41:40 +0000 (12:41 +0200)] 
[3.15] gh-152851: fix a crash when copying a BLAKE-2s/2b object (GH-153008) (#153011)

gh-152851: fix a crash when copying a BLAKE-2s/2b object (GH-153008)
(cherry picked from commit 5a400ceafbbd4456ac65fbdbcf5d62ce9e8e4f9f)

Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
3 weeks ago[3.15] gh-150579: use lazy imports for concurrent.futures (GH-150585) (#152975)
Miss Islington (bot) [Sat, 4 Jul 2026 03:20:49 +0000 (05:20 +0200)] 
[3.15] gh-150579: use lazy imports for concurrent.futures (GH-150585) (#152975)

gh-150579: use lazy imports for concurrent.futures (GH-150585)

This module has a manual lazy import hack using `__getattr__`. Now that lazy imports exist and cannot be disabled, this could use lazy imports instead.

Key differences: this will now show up in sys.lazy_modules when accessed. Error messages should be a bit better without the wrapper `__getattr__` involved.  That's the only differences I can think of.
(cherry picked from commit 423ae0ff36c6485f722e0fe3274124dc3df09862)

Signed-off-by: Henry Schreiner <henryfs@princeton.edu>
Co-authored-by: Henry Schreiner <henryfs@princeton.edu>
Co-authored-by: Gregory P. Smith <greg@krypto.org>
3 weeks ago[3.15] gh-83386: Enable test_hang_gh83386 for ProcessPoolExecutor (GH-152976) (#152982)
Miss Islington (bot) [Fri, 3 Jul 2026 21:32:20 +0000 (23:32 +0200)] 
[3.15] gh-83386: Enable test_hang_gh83386 for ProcessPoolExecutor (GH-152976) (#152982)

gh-83386: Enable test_hang_gh83386 for ProcessPoolExecutor (GH-152976)

The hang this test guards against (interpreter exit after
shutdown(wait=False) with running futures) was fixed for
ProcessPoolExecutor by the executor management rewrite years ago, but
the test still skipped it citing the issue. The skip also hid a latent
NameError in the subprocess template, which only selects a start method
in the process pool variants; rewrite it to use the same
mp_context=get_context() shape as the sibling templates. Remove a stale
comment claiming ProcessPoolExecutor often hangs with wait=False.
(cherry picked from commit 548c7314138b85cab3b945a1ce05440dd836a2ea)

Co-authored-by: Gregory P. Smith <68491+gpshead@users.noreply.github.com>
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
3 weeks ago[3.15] gh-152951 - Fix double DECREF when `newblock` fails during deque.extend calls...
Miss Islington (bot) [Fri, 3 Jul 2026 18:14:59 +0000 (20:14 +0200)] 
[3.15] gh-152951 - Fix double DECREF when `newblock` fails during deque.extend calls (GH-152961) (#152971)

gh-152951 - Fix double DECREF when `newblock` fails during deque.extend calls (GH-152961)
(cherry picked from commit a90576d72c8a409f7c3ffcaefafb13945e3405ab)

Co-authored-by: Steve Stagg <stestagg@gmail.com>
3 weeks ago[3.15] gh-152785: Upgrade LLVM to LLVM 21 in GitHub Action jobs (GH-152781) (#152968)
Miss Islington (bot) [Fri, 3 Jul 2026 16:48:51 +0000 (18:48 +0200)] 
[3.15] gh-152785: Upgrade LLVM to LLVM 21 in GitHub Action jobs (GH-152781) (#152968)

gh-152785: Upgrade LLVM to LLVM 21 in GitHub Action jobs (GH-152781)

Upgrade LLVM to LLVM 21 in GitHub Action jobs:

* Reusable Sanitizer
* Reusable Ubuntu ("Install Clang and BOLT")
(cherry picked from commit f5b3eefbdabeedb71f0d69f60a6f8d71dc11873a)

Co-authored-by: Victor Stinner <vstinner@python.org>
3 weeks ago[3.15] gh-150880: Normalize paths on Windows before appending wildcard (GH-152906...
Miss Islington (bot) [Fri, 3 Jul 2026 16:02:22 +0000 (18:02 +0200)] 
[3.15] gh-150880: Normalize paths on Windows before appending wildcard (GH-152906) (GH-152963)

gh-150880: Normalize paths on Windows before appending wildcard (GH-152906)

This ensures that we don't turn a "valid" path with trailing spaces into an invalid path with embedded spaces.
(cherry picked from commit 1b4135a2c69f5320dbdcb37dcc295a5fd36580b5)

Co-authored-by: Zain Nadeem <zainnadeemzainnadeem80@gmail.com>
3 weeks ago[3.15] gh-152785: Upgrade GCC from 10 to 13 in GHA Address Sanitizer (GH-152782)...
Miss Islington (bot) [Fri, 3 Jul 2026 11:40:56 +0000 (13:40 +0200)] 
[3.15] gh-152785: Upgrade GCC from 10 to 13 in GHA Address Sanitizer (GH-152782) (#152949)

gh-152785: Upgrade GCC from 10 to 13 in GHA Address Sanitizer (GH-152782)

Remove the step which installs GCC 10. This step was needed when
Ubuntu only had GCC 9. We are now using Ubuntu 24.04 which has GCC
13.
(cherry picked from commit 31a0e0968e92c65019e4e0547475904e9b047d4a)

Co-authored-by: Victor Stinner <vstinner@python.org>
3 weeks ago[3.15] gh-152903: Change PCWSTR to PWSTR in GetThreadDescription() typedef (GH-152904...
Miss Islington (bot) [Fri, 3 Jul 2026 11:33:14 +0000 (13:33 +0200)] 
[3.15] gh-152903: Change PCWSTR to PWSTR in GetThreadDescription() typedef (GH-152904) (#152943)

gh-152903: Change PCWSTR to PWSTR in GetThreadDescription() typedef (GH-152904)

Fixes issue GH-152903
(cherry picked from commit ac1acb6d7de2680d1f1f3e4cef7c145083ebba74)

Co-authored-by: Carlo Bramini <carlo_bramini@users.sourceforge.net>
3 weeks ago[3.15] gh-152870: Fix compile error with decimal when EXTRA_FUNCTIONALITY enabled...
Miss Islington (bot) [Fri, 3 Jul 2026 11:03:07 +0000 (13:03 +0200)] 
[3.15] gh-152870: Fix compile error with decimal when EXTRA_FUNCTIONALITY enabled (GH-152871) (#152937)

gh-152870: Fix compile error with decimal when EXTRA_FUNCTIONALITY enabled (GH-152871)
(cherry picked from commit c4739533f335f9cd4fa71ba6daff2a81751da643)

Co-authored-by: Xiaowei Lu <weixlu420302@gmail.com>
3 weeks ago[3.15] gh-150641: Fix evaluating forward references in STRING format can 'leak' inter...
Miss Islington (bot) [Fri, 3 Jul 2026 09:55:10 +0000 (11:55 +0200)] 
[3.15] gh-150641: Fix evaluating forward references in STRING format can 'leak' internal names in `typing` (GH-150648) (#152935)

gh-150641: Fix evaluating forward references in STRING format can 'leak' internal names in `typing` (GH-150648)
(cherry picked from commit f75028f7ceebee4cbeb46bf040834e2005d57436)

Co-authored-by: Ivy Xu <fakeshadow1337@gmail.com>
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
3 weeks ago[3.15] gh-152919: Ensure nuget.org source exist before python install (GH-152919)
Miss Islington (bot) [Fri, 3 Jul 2026 08:55:46 +0000 (10:55 +0200)] 
[3.15] gh-152919: Ensure nuget.org source exist before python install (GH-152919)

(cherry picked from commit 8c35afa221020f58d7d4f0237a999b2b989410fe)

Co-authored-by: Bart van der Braak <bartvdbraak@gmail.com>
3 weeks ago[3.15] gh-115634: Fix ProcessPoolExecutor deadlock with max_tasks_per_child (GH-14090...
Miss Islington (bot) [Fri, 3 Jul 2026 06:37:25 +0000 (08:37 +0200)] 
[3.15] gh-115634: Fix ProcessPoolExecutor deadlock with max_tasks_per_child (GH-140900) (#152926)

gh-115634: Fix ProcessPoolExecutor deadlock with max_tasks_per_child (GH-140900)

The idle worker semaphore counts task completions, not idle workers, so
it can hold a stale token released by a worker that later exited upon
reaching its max_tasks_per_child limit. The worker replacement path
consumed such tokens and skipped spawning a replacement, deadlocking
the remaining queued tasks once no workers were left.

Replace dead workers based on len(self._processes) without consulting
the semaphore. The submit() path is unchanged, preserving on-demand
spawning and idle worker reuse.

Replace the documentation note added in GH-140897 with a versionchanged
entry now that the bug is fixed.

Based on a fix proposed by Tabrez Mohammed.
(cherry picked from commit b706767d8fd7d21afc3f156fb9c173bc99855e0e)

Co-authored-by: Gregory P. Smith <68491+gpshead@users.noreply.github.com>
3 weeks ago[3.15] gh-152785: Upgrade Java from 17 to 21 in GHA Android (GH-152783) (#152920)
Miss Islington (bot) [Fri, 3 Jul 2026 02:56:16 +0000 (04:56 +0200)] 
[3.15] gh-152785: Upgrade Java from 17 to 21 in GHA Android (GH-152783) (#152920)

Upgrade Java from 17 to 21 in GHA Android, and document the Java version
requirement.
(cherry picked from commit 0a13efc3fb0bf0896612ed20decce3ce4eb5e05b)

Co-authored-by: Victor Stinner <vstinner@python.org>
3 weeks ago[3.15] gh-151428: Remove unused imports in idlelib.idle_test (GH-151478) (#152916)
Terry Jan Reedy [Thu, 2 Jul 2026 21:07:27 +0000 (17:07 -0400)] 
[3.15] gh-151428: Remove unused imports in idlelib.idle_test (GH-151478) (#152916)

3 weeks ago[3.15] gh-152847: Reject POSIX TZ rule with non-digit day-of-year in `_zoneinfo.py...
Miss Islington (bot) [Thu, 2 Jul 2026 18:31:47 +0000 (20:31 +0200)] 
[3.15] gh-152847: Reject POSIX TZ rule with non-digit day-of-year in `_zoneinfo.py` (GH-152848) (#152910)

(cherry picked from commit 31864bd9a683c93bd9b294fb5bcf6857493c15ff)

Co-authored-by: tonghuaroot (童话) <tonghuaroot@gmail.com>
Co-authored-by: Stan Ulbrych <stan@python.org>
3 weeks ago[3.15] gh-98894: Check tracer exit status in test_dtrace (GH-152893) (#152900)
Miss Islington (bot) [Thu, 2 Jul 2026 15:37:52 +0000 (17:37 +0200)] 
[3.15] gh-98894: Check tracer exit status in test_dtrace (GH-152893) (#152900)

gh-98894: Check tracer exit status in test_dtrace (GH-152893)

Fail functional dtrace and SystemTap cases directly when the tracer exits
non-zero.
(cherry picked from commit 311e7e79f4e305f1217ef548a62ea219a47c0d7b)

Co-authored-by: stratakis <cstratak@redhat.com>
3 weeks ago[3.15] gh-86165: Fix Time2Internaldate with datetime timetuple (GH-151844) (GH-152895)
Miss Islington (bot) [Thu, 2 Jul 2026 15:29:55 +0000 (17:29 +0200)] 
[3.15] gh-86165: Fix Time2Internaldate with datetime timetuple (GH-151844) (GH-152895)

(cherry picked from commit 460fe13601d1a71f4700f6685e0f4d01d1ef0d6b)

Co-authored-by: Xiao Yuan <yuanx749@gmail.com>
3 weeks ago[3.15] gh-144067: Document terminal leak when initscr() follows setupterm() (GH-15262...
Serhiy Storchaka [Thu, 2 Jul 2026 15:01:41 +0000 (18:01 +0300)] 
[3.15] gh-144067: Document terminal leak when initscr() follows setupterm() (GH-152624) (GH-152894)

(cherry picked from commit e471712958515b65b737ac742b294acf7de9220c)

Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
3 weeks ago[3.15] gh-98894: Check readelf failures in test_dtrace (GH-152345) (#152891)
Miss Islington (bot) [Thu, 2 Jul 2026 14:58:12 +0000 (16:58 +0200)] 
[3.15] gh-98894: Check readelf failures in test_dtrace (GH-152345) (#152891)

gh-98894: Check readelf failures in test_dtrace (GH-152345)

Report readelf command failures directly instead of later failing with
missing-probe assertions.
(cherry picked from commit d60a6779e8dd5fbf1f2f84b34bb5a20f3e8cd7fd)

Co-authored-by: stratakis <cstratak@redhat.com>
3 weeks ago[3.15] gh-152680: Detect virtualization on Windows in pythoninfo (GH-152824) (#152890)
Miss Islington (bot) [Thu, 2 Jul 2026 13:27:35 +0000 (15:27 +0200)] 
[3.15] gh-152680: Detect virtualization on Windows in pythoninfo (GH-152824) (#152890)

gh-152680: Detect virtualization on Windows in pythoninfo (GH-152824)

Use WMI to detect virtualization on Windows.

Replace wmic command with _wmi module to get the operating system caption and
version.

The wmic tool is deprecated since January 2024:
https://techcommunity.microsoft.com/blog/windows-itpro-blog/wmi-command-line-wmic-utility-deprecation-next-steps/4039242

For example, it's no longer installed in Windows images on GitHub
Action.

Fix also run_command(): no longer try to spawn a subprocess if the
platform doesn't support subprocess. It avoids logging run_command()
errors.
(cherry picked from commit 4e4869b62fa91e26117b1d9136f60b58c9f505a5)

Co-authored-by: Victor Stinner <vstinner@python.org>
3 weeks ago[3.15] gh-88574: Skip a spurious blank line after a literal in imaplib (GH-152751...
Miss Islington (bot) [Thu, 2 Jul 2026 13:25:34 +0000 (15:25 +0200)] 
[3.15] gh-88574: Skip a spurious blank line after a literal in imaplib (GH-152751) (GH-152884)

Some IMAP servers send an extra blank line after the data of a literal.
imaplib mistook it for the response trailer and failed on the next
command.  Such a blank line is now skipped.
(cherry picked from commit 53ff1a28ccfa69925c3c452cfc003970640fa65b)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
3 weeks ago[3.15] gh-150069: Test frozen dataclass and properties interaction (GH-150070) (...
Miss Islington (bot) [Thu, 2 Jul 2026 13:20:55 +0000 (15:20 +0200)] 
[3.15] gh-150069: Test frozen dataclass and properties interaction (GH-150070) (#152882)

gh-150069: Test frozen dataclass and properties interaction (GH-150070)
(cherry picked from commit 753f82db2fed38bf725ded2b333ea3749c81fe82)

Co-authored-by: sobolevn <mail@sobolevn.me>
3 weeks ago[3.15] gh-49680: Test imaplib.IMAP4.append line-ending normalization (GH-152877)
Serhiy Storchaka [Thu, 2 Jul 2026 11:57:58 +0000 (14:57 +0300)] 
[3.15] gh-49680: Test imaplib.IMAP4.append line-ending normalization (GH-152877)

gh-49680: Test imaplib.IMAP4.append line-ending normalization

(cherry picked from commit ddb6539c4976b18895bb5c5cd37d197c60fb459d)

Co-authored-by: harjoth <harjoth.khara@gmail.com>
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
3 weeks ago[3.15] gh-66335: Add tests for imaplib command methods (GH-152872) (GH-152873)
Miss Islington (bot) [Thu, 2 Jul 2026 10:40:07 +0000 (12:40 +0200)] 
[3.15] gh-66335: Add tests for imaplib command methods (GH-152872) (GH-152873)

Add coverage tests for the IMAP4 command methods and their UID variants
(SELECT, CREATE, COPY, STORE, FETCH, SEARCH, SORT, THREAD, DELETE,
RENAME, SUBSCRIBE, UNSUBSCRIBE, LIST, STATUS, the ACL and quota
commands, ANNOTATION, PROXYAUTH and ENABLE), plus test helpers
(splitargs, parse_sequence_set, make_simple_handler) and per-command
argument capture in the test server.
(cherry picked from commit a50b089b7c46e3068d9177b5f18ac767a31a18cd)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
3 weeks ago[3.15] gh-151763: Fix OOM-0013 crash when the parser or compiler fails to allocate...
Miss Islington (bot) [Thu, 2 Jul 2026 08:23:23 +0000 (10:23 +0200)] 
[3.15] gh-151763: Fix OOM-0013 crash when the parser or compiler fails to allocate (GH-151968) (#152836)

3 weeks ago[3.15] gh-152569: Fix asyncio.wait leaking tasks via await-graph on long-lived future...
Miss Islington (bot) [Thu, 2 Jul 2026 08:20:14 +0000 (10:20 +0200)] 
[3.15] gh-152569: Fix asyncio.wait leaking tasks via await-graph on long-lived futures (GH-152585) (#152868)

gh-152569: Fix asyncio.wait leaking tasks via await-graph on long-lived futures (GH-152585)
(cherry picked from commit f8514dccaca4acb84ba02188c3e433a9d6989c13)

Co-authored-by: Simon Knott <info@simonknott.de>
3 weeks ago[3.15] gh-144473: Add "steal" term to glossary; clarify "stealing" on error (GH-14450...
Miss Islington (bot) [Thu, 2 Jul 2026 08:07:57 +0000 (10:07 +0200)] 
[3.15] gh-144473: Add "steal" term to glossary; clarify "stealing" on error (GH-144502) (GH-152771)

With one exception, all "stealing" functions also steal on error,
but it makes sense to note this in each case.
(cherry picked from commit 34503f39532279efb12653754bb3a7e535fb66cc)

Co-authored-by: Petr Viktorin <encukou@gmail.com>
Co-authored-by: Peter Bierma <zintensitydev@gmail.com>
3 weeks ago[3.15] gh-108280: Give a meaningful error for an invalid imaplib greeting (GH-152768...
Miss Islington (bot) [Thu, 2 Jul 2026 07:46:30 +0000 (09:46 +0200)] 
[3.15] gh-108280: Give a meaningful error for an invalid imaplib greeting (GH-152768) (GH-152856)

Connecting to a server that does not send a valid IMAP4 greeting, such as
a POP3 server answering on the IMAP port, failed with the unhelpful
"imaplib.IMAP4.error: None".  A meaningful message is now raised instead.
(cherry picked from commit 262b6a0df5a325e788928ab0cd514fa4786571b4)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
3 weeks ago[3.15] gh-63121: Refresh imaplib capabilities on state changes (GH-152752) (GH-152854)
Miss Islington (bot) [Thu, 2 Jul 2026 07:40:43 +0000 (09:40 +0200)] 
[3.15] gh-63121: Refresh imaplib capabilities on state changes (GH-152752) (GH-152854)

imaplib fetched the server capabilities only once, at connection time.
They are now also refreshed after a successful LOGIN or AUTHENTICATE,
from the CAPABILITY response the server sent or, if it sent none, by
querying it.  This lets methods such as enable() see capabilities added
after login, for example ENABLE on Gmail (gh-103451).

Capabilities advertised in the server greeting are now used too, saving
a redundant CAPABILITY command.
(cherry picked from commit c89b72abed7393d9d428f1e336e3aa02e7ef6ce8)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
3 weeks ago[3.15] gh-72507: Document that imaplib does not verify TLS certificates by default...
Miss Islington (bot) [Thu, 2 Jul 2026 07:28:02 +0000 (09:28 +0200)] 
[3.15] gh-72507: Document that imaplib does not verify TLS certificates by default (GH-152778) (GH-152862)

IMAP4_SSL() and IMAP4.starttls() do not verify the server certificate or
hostname unless a suitable ssl_context is passed.
(cherry picked from commit f3bf8abb8c0f4cb20bed3dc7d98eca4a2d668709)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
3 weeks ago[3.15] gh-79964: Clarify the imaplib fetch example in the docs (GH-152780) (GH-152859)
Miss Islington (bot) [Thu, 2 Jul 2026 07:26:50 +0000 (09:26 +0200)] 
[3.15] gh-79964: Clarify the imaplib fetch example in the docs (GH-152780) (GH-152859)

A FETCH response may contain additional or unsolicited data, so the
message is not always data[0][1].
(cherry picked from commit 50ae0be74988564fb09746a49eb4b8f8e740f3c3)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
3 weeks ago[3.15] gh-135142: update idlelib News3.txt for 9 issues (GH-152839) (#152842)
Miss Islington (bot) [Thu, 2 Jul 2026 03:20:31 +0000 (05:20 +0200)] 
[3.15] gh-135142: update idlelib News3.txt for 9 issues (GH-152839) (#152842)

gh-135142: update idlelib News3.txt for 9 issues (GH-152839)

13 posted 2026 June 30 for various issues.
Edited one other by me.
(cherry picked from commit 384abb71445a5a37dfb4dbc5e3020ea6c0c307f7)

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
3 weeks ago[3.15] gh-82183: Do not restart the busy IDLE shell when running without restart...
Miss Islington (bot) [Wed, 1 Jul 2026 23:30:08 +0000 (01:30 +0200)] 
[3.15] gh-82183: Do not restart the busy IDLE shell when running without restart (GH-152745) (#152832)

gh-82183: Do not restart the busy IDLE shell when running without restart (GH-152745)

"Run... Customized" with "Restart shell" unchecked restarted the shell
anyway when it was busy executing code, killing any pending input.  It now
reports that the shell is executing just once, not twice, and does not run.
(cherry picked from commit be449b1c6ad739a40a7da35a81317bb49f1f54ff)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
3 weeks ago[3.15] gh-75595: Do not save a blank int entry in IDLE Settings (GH-152743) (#152827)
Miss Islington (bot) [Wed, 1 Jul 2026 22:27:52 +0000 (00:27 +0200)] 
[3.15] gh-75595: Do not save a blank int entry in IDLE Settings (GH-152743) (#152827)

gh-75595: Do not save a blank int entry in IDLE Settings (GH-152743)

gh-83653: Do not save a blank int entry in IDLE Settings

Blanking an integer entry wrote an empty string to the config file, which
caused an "invalid int value" warning when it was read back.
(cherry picked from commit 3428762f33c6c064998f5b0c385cdfd0f0c2e198)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Co-authored-by: Cheryl Sabella <cheryl.sabella@gmail.com>
3 weeks ago[3.15] gh-65339: Save IDLE Shell and Output windows as text by default (GH-152742...
Miss Islington (bot) [Wed, 1 Jul 2026 21:03:58 +0000 (23:03 +0200)] 
[3.15] gh-65339: Save IDLE Shell and Output windows as text by default (GH-152742) (#152821)

gh-65339: Save IDLE Shell and Output windows as text by default (GH-152742)

Their content is not Python source, so the Save As dialog now lists text
files first and defaults to a ".txt" extension.
(cherry picked from commit efcfb1a4e0f4d0d0e33aefccd8373e116e98e3de)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
3 weeks ago[3.15] gh-151040: Fix `test_c_stack_unwind` on RISC-V (GH-152370) (#152819)
Stan Ulbrych [Wed, 1 Jul 2026 19:20:27 +0000 (21:20 +0200)] 
[3.15] gh-151040: Fix `test_c_stack_unwind` on RISC-V (GH-152370) (#152819)

(cherry picked from commit 1b0c05f14807a43d070127b3d8eac1af8de27f28)

Co-authored-by: Ivy Xu <fakeshadow1337@gmail.com>
3 weeks ago[3.15] gh-80504: Always show the full search path in IDLE Find in Files (GH-152740...
Miss Islington (bot) [Wed, 1 Jul 2026 17:35:41 +0000 (19:35 +0200)] 
[3.15] gh-80504: Always show the full search path in IDLE Find in Files (GH-152740) (#152810)

gh-80504: Always show the full search path in IDLE Find in Files (GH-152740)

The "In files:" field of the Find in Files dialog now always contains a
full directory path, so the grep output shows which directory was searched.
(cherry picked from commit f21f338f1f88352d50362271a7f38c01745a65da)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
3 weeks ago[3.15] gh-134300: Remove idlelib from the path of the IDLE user process (GH-152739...
Miss Islington (bot) [Wed, 1 Jul 2026 17:03:14 +0000 (19:03 +0200)] 
[3.15] gh-134300: Remove idlelib from the path of the IDLE user process (GH-152739) (#152807)

gh-134300: Remove idlelib from the path of the IDLE user process (GH-152739)

The idlelib directory ends up on sys.path when idle.py is run as a script,
and it was passed to the user process, where it let user code import
idlelib submodules as top-level modules, such as "import help".
(cherry picked from commit 3f5491a09223f7371b4b4c92225e8dfdf1c989b7)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
3 weeks ago[3.15] gh-89360: Fix ValueError in IDLE MultiCall event_delete (GH-152738) (#152802)
Miss Islington (bot) [Wed, 1 Jul 2026 16:49:12 +0000 (18:49 +0200)] 
[3.15] gh-89360: Fix ValueError in IDLE MultiCall event_delete (GH-152738) (#152802)

gh-89360: Fix ValueError in IDLE MultiCall event_delete (GH-152738)

Deleting a key binding for a sequence not bound to the virtual event no
longer raises a ValueError; the discrepancy is now ignored.
(cherry picked from commit ea7619faeacf310ba1b2ef41ad07966ce2aae11f)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
3 weeks ago[3.15] gh-71956: Fix IDLE Replace All searching up without wrap around (GH-152737...
Miss Islington (bot) [Wed, 1 Jul 2026 16:22:25 +0000 (18:22 +0200)] 
[3.15] gh-71956: Fix IDLE Replace All searching up without wrap around (GH-152737) (#152799)

gh-71956: Fix IDLE Replace All searching up without wrap around (GH-152737)

When the search direction is "Up" and "Wrap around" is off, Replace All
replaced only the first match above the current position (and all matches
below it).  It now replaces all matches from the start of the text down to
the current position, consistently with the "Up" direction.
(cherry picked from commit ef27e5b310feebb6068f9e798eee7069e1966fc9)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
3 weeks ago[3.15] Fix copy paste error with Py_mod_state_traverse (GH-152776) (#152777)
Miss Islington (bot) [Wed, 1 Jul 2026 16:05:39 +0000 (18:05 +0200)] 
[3.15] Fix copy paste error with Py_mod_state_traverse (GH-152776) (#152777)

(cherry picked from commit b52bc564513d720fb0c6470871c1f5c24c7ce1d8)

Co-authored-by: Petr Viktorin <encukou@gmail.com>
Co-authored-by: hydrogen-mvm <hydrogen-mvm@users.noreply.github.com>
3 weeks ago[3.15] gh-66331: Set correct WM_CLASS on X11 for IDLE windows (GH-152733) (#152794)
Miss Islington (bot) [Wed, 1 Jul 2026 15:44:06 +0000 (17:44 +0200)] 
[3.15] gh-66331: Set correct WM_CLASS on X11 for IDLE windows (GH-152733) (#152794)

gh-66331: Set correct WM_CLASS on X11 for IDLE windows (GH-152733)

Set the WM_CLASS of IDLE's long-lived windows (window-list windows and
the stack viewers) to "Idle" instead of the default "Toplevel", so that
window managers group and label them correctly.
(cherry picked from commit 4e16b8d4eef162082c3d409f171802ceccb36521)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
3 weeks ago[3.15] gh-152157: Reject empty fractions in `_datetime.{date}time.fromisoformat`...
Miss Islington (bot) [Wed, 1 Jul 2026 10:23:08 +0000 (12:23 +0200)] 
[3.15] gh-152157: Reject empty fractions in `_datetime.{date}time.fromisoformat` (GH-152161) (#152761)

(cherry picked from commit 112c69a0514902af2d2f7d0503de6690ca59a10f)

Co-authored-by: tonghuaroot (童话) <tonghuaroot@gmail.com>
Co-authored-by: Stan Ulbrych <stan@python.org>
3 weeks ago[3.15] gh-152728: IDLE - move 3 toplevel fix_xyz functions to idlelb.util (GH-152729...
Miss Islington (bot) [Wed, 1 Jul 2026 06:08:44 +0000 (08:08 +0200)] 
[3.15] gh-152728: IDLE - move 3 toplevel fix_xyz functions to idlelb.util (GH-152729) (#152730)

gh-152728: IDLE - move 3 toplevel fix_xyz functions to idlelb.util (GH-152729)

IDLE - move 3 toplevel fix_xyz functions to idlelb.util

Move idlelib functions run.fix_scaling, editor.fixwordbreaks
(as fix_word_breaks).  All are used in at least 3 modules.
(cherry picked from commit 53ca52ddb0c2725a1c34e4eb2245339cd3dcaa84)

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
3 weeks ago[3.15] gh-151626: Fix tests that fail when PYTHONPYCACHEPREFIX is set (GH-151952...
Miss Islington (bot) [Wed, 1 Jul 2026 05:57:17 +0000 (07:57 +0200)] 
[3.15] gh-151626: Fix tests that fail when PYTHONPYCACHEPREFIX is set (GH-151952) (#152736)

gh-151626: Fix tests that fail when PYTHONPYCACHEPREFIX is set (GH-151952)

Fix tests in test_compileall, test_import, test_importlib, test_py_compile, and test_inspect to neutralize PYTHONPYCACHEPREFIX
(cherry picked from commit 564c58c718bc3de9cf3d9bc20cdc06317411c1cd)

Co-authored-by: Jiucheng(Oliver) <git.jiucheng@gmail.com>
3 weeks ago[3.15] gh-152715: Add pythoninfo-build command to Platforms/Apple (GH-152716) (#152723)
Miss Islington (bot) [Wed, 1 Jul 2026 03:29:44 +0000 (05:29 +0200)] 
[3.15] gh-152715: Add pythoninfo-build command to Platforms/Apple (GH-152716) (#152723)

Add a pythoninfo-build command to Platforms/Apple to display build
info of the build Python. The command runs "make pythoninfo".

The "ci" and "build" commands now also run "pythoninfo-build".
(cherry picked from commit 746c535a8e4cbf32af3d3ceba204c01d91614217)

Co-authored-by: Victor Stinner <vstinner@python.org>
3 weeks ago[3.15] gh-152711: Add pythoninfo-build command to Platforms/Android (GH-152713) ...
Miss Islington (bot) [Wed, 1 Jul 2026 03:29:26 +0000 (05:29 +0200)] 
[3.15] gh-152711: Add pythoninfo-build command to Platforms/Android (GH-152713) (#152725)

Add a pythoninfo-build command to Platforms/Android to display build
info of the build Python. The command runs "make pythoninfo".

ci and build commands now also run pythoninfo-build
(cherry picked from commit fdcee4f5bd8d0dd852518ec9f092ac35ce9fd5d8)

Co-authored-by: Victor Stinner <vstinner@python.org>
3 weeks ago[3.15] gh-152502: Detect the curses mouse interface portably (GH-152705) (GH-152707)
Serhiy Storchaka [Tue, 30 Jun 2026 20:59:28 +0000 (23:59 +0300)] 
[3.15] gh-152502: Detect the curses mouse interface portably (GH-152705) (GH-152707)

The mouse interface (getmouse(), the BUTTON* constants, ...) was gated on the
ncurses-specific NCURSES_MOUSE_VERSION macro, so it was dropped on other curses
implementations that provide it, such as NetBSD curses and PDCurses.

Gate it instead on a configure capability probe or the PDCURSES macro.  Probe
for getmouse() with its X/Open getmouse(MEVENT *) signature, since PDCurses
declares an incompatible getmouse(void) unless built for the ncurses mouse API,
which PDC_NCMOUSE now always selects.

(cherry picked from commit 7bbea4f4868ef89b07b986d7a0d4b585e8271f27)

Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
3 weeks ago[3.15] gh-152680: Detect container/VM in test.pythoninfo (GH-152668) (#152699)
Miss Islington (bot) [Tue, 30 Jun 2026 15:47:12 +0000 (17:47 +0200)] 
[3.15] gh-152680: Detect container/VM in test.pythoninfo (GH-152668) (#152699)

gh-152680: Detect container/VM in test.pythoninfo (GH-152668)

On Apple, log the hardware model as "system.hardware".

* Log the "CI", "IMAGE_OS_VERSION" and "container"
  environment variables.
* Add run_command() and first_line() functions.
(cherry picked from commit f1c536372199cfb9c2e7b360b7bf04208c9eee82)

Co-authored-by: Victor Stinner <vstinner@python.org>
3 weeks ago[3.15] gh-151126: Fix a possible crash during the startup with no memory under `Py_ST...
Miss Islington (bot) [Tue, 30 Jun 2026 11:56:43 +0000 (13:56 +0200)] 
[3.15] gh-151126: Fix a possible crash during the startup with no memory under `Py_STACKREF_DEBUG` (GH-152478) (#152677)

gh-151126: Fix a possible crash during the startup with no memory under `Py_STACKREF_DEBUG` (GH-152478)
(cherry picked from commit ecdef1773006529b0fea6639d0effeecbb41679c)

Co-authored-by: sobolevn <mail@sobolevn.me>
3 weeks ago[3.15] gh-151029: Fix `test_remote_exec_deleted_static_executable` on static installe...
Miss Islington (bot) [Tue, 30 Jun 2026 11:25:27 +0000 (13:25 +0200)] 
[3.15] gh-151029: Fix `test_remote_exec_deleted_static_executable` on static installed builds (GH-152653) (#152670)

(cherry picked from commit 03efeef226b774f937056e95e0cdb8f7d37c6532)

Co-authored-by: Stan Ulbrych <stan@python.org>
3 weeks ago[3.15] gh-152635: Raise MemoryError when the lock allocation fails in `_interpchannel...
Miss Islington (bot) [Tue, 30 Jun 2026 11:24:17 +0000 (13:24 +0200)] 
[3.15] gh-152635: Raise MemoryError when the lock allocation fails in `_interpchannels.create()` (GH-152642) (#152671)

gh-152635: Raise MemoryError when the lock allocation fails in `_interpchannels.create()` (GH-152642)

Previously, an allocation failure when creating
the lock for a channel in `_interpchannels` would trigger an assert.
Caused by `handle_channel_error` being passed an error code of -1
which is only allowed if an exception has been set.
(in this case, no exception was set)

`channelsmod_create` now forwards the error code from `channel_create`
which `handle_channel_error` already handled.
(cherry picked from commit b383aa6e1a8ea53fdeed88c71fbc34d8b2d1fde9)

Co-authored-by: Steve Stagg <stestagg@gmail.com>
Co-authored-by: sobolevn <mail@sobolevn.me>
3 weeks ago[3.15] Don't require the `_test{internal}capi` modules in `test_monitoring.py` (GH...
Miss Islington (bot) [Tue, 30 Jun 2026 10:16:15 +0000 (12:16 +0200)] 
[3.15] Don't require the `_test{internal}capi` modules in `test_monitoring.py` (GH-152311) (#152660)

(cherry picked from commit 189ab8388762c8102b2d72ad3a1a921f7f2aef10)

Co-authored-by: Shahar Naveh <50263213+ShaharNaveh@users.noreply.github.com>
Co-authored-by: Stan Ulbrych <stan@python.org>
3 weeks ago[3.15] gh-50966: Fix unbounded recursion in turtle drag handlers (GH-152626) (GH...
Miss Islington (bot) [Tue, 30 Jun 2026 10:14:56 +0000 (12:14 +0200)] 
[3.15] gh-50966: Fix unbounded recursion in turtle drag handlers (GH-152626) (GH-152657)

TurtleScreenBase._update() redraws with cv.update(), which also reprocesses
input events, so a handler that moves the turtle (such as
screen.ondrag(turtle.goto)) reenters _update() for every queued event until
the interpreter crashes.  A reentrant _update() now only flushes drawing with
update_idletasks().
(cherry picked from commit 6f103fab178c07cbb5f701b8ad97e275b6eb6c4c)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
3 weeks ago[3.15] gh-133510: Add links to more info for the match statement in FAQ anwser (GH...
Miss Islington (bot) [Tue, 30 Jun 2026 09:16:59 +0000 (11:16 +0200)] 
[3.15] gh-133510: Add links to more info for the match statement in FAQ anwser (GH-133511) (#152656)

(cherry picked from commit 77181570da2d6d8f7bfca39f438ef0a893a30567)

Co-authored-by: xzkdeng <xzkdeng@gmail.com>
Co-authored-by: sobolevn <mail@sobolevn.me>
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
Co-authored-by: Stan Ulbrych <stan@python.org>
3 weeks ago[3.15] gh-152248: Reject a POSIX TZ abbreviation with non-ASCII-letters in pure-Pytho...
Miss Islington (bot) [Tue, 30 Jun 2026 08:57:58 +0000 (10:57 +0200)] 
[3.15] gh-152248: Reject a POSIX TZ abbreviation with non-ASCII-letters in pure-Python `zoneinfo` (GH-152249) (#152650)

(cherry picked from commit 449122ed0dbdb6a545af4927c59f4c80ee15c515)

Co-authored-by: tonghuaroot (童话) <tonghuaroot@gmail.com>
Co-authored-by: Stan Ulbrych <stan@python.org>
3 weeks ago[3.15] gh-149689: add missing error checks in Parser/action_helpers.c (GH-149710...
Miss Islington (bot) [Tue, 30 Jun 2026 08:11:09 +0000 (10:11 +0200)] 
[3.15] gh-149689: add missing error checks in Parser/action_helpers.c (GH-149710) (#152640)

3 weeks ago[3.15] Use tkinter wrapper methods instead of raw Tcl calls in turtle and IDLE (GH...
Miss Islington (bot) [Tue, 30 Jun 2026 06:34:26 +0000 (08:34 +0200)] 
[3.15] Use tkinter wrapper methods instead of raw Tcl calls in turtle and IDLE (GH-152414) (GH-152648)

Use tkinter wrapper methods instead of raw Tcl calls in turtle and IDLE (GH-152414)

* turtle: wm_attributes(topmost=...);
* idlelib.macosx: winfo_server();
* idlelib tests: after_info().
(cherry picked from commit fc866dc84ec430ab22d60609520f7ab27267baef)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
3 weeks ago[3.15] gh-146219: Document reusing a thread state across repeated foreign-thread...
Miss Islington (bot) [Tue, 30 Jun 2026 00:12:59 +0000 (02:12 +0200)] 
[3.15] gh-146219: Document reusing a thread state across repeated foreign-thread calls (GH-146221) (#152644)

gh-146219: Document reusing a thread state across repeated foreign-thread calls (GH-146221)

* Document reusing a thread state across repeated foreign-thread calls

Add a subsection under "Non-Python created threads" explaining the
performance cost of creating/destroying a PyThreadState on every
Ensure/Release cycle and showing how to keep one alive for the
thread's lifetime instead.

* add a comma

---------
(cherry picked from commit 5717518fb3ed6f34716683e08ec372267d871d21)

Co-authored-by: Gregory P. Smith <68491+gpshead@users.noreply.github.com>
Co-authored-by: Peter Bierma <zintensitydev@gmail.com>
3 weeks ago[3.15] gh-152492 Allow `OrderedDict.update` to work with `frozendict` (GH-152494...
Miss Islington (bot) [Mon, 29 Jun 2026 20:20:08 +0000 (22:20 +0200)] 
[3.15] gh-152492 Allow `OrderedDict.update` to work with `frozendict` (GH-152494) (#152630)

gh-152492 Allow `OrderedDict.update` to work with `frozendict` (GH-152494)
(cherry picked from commit 0a29d8408cfdd9a66f2b65745a3ae1cda022775c)

Co-authored-by: da-woods <dw-git@d-woods.co.uk>
Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
Co-authored-by: sobolevn <mail@sobolevn.me>