]> git.ipfire.org Git - thirdparty/Python/cpython.git/log
thirdparty/Python/cpython.git
4 months ago[3.12] gh-135661: Fix parsing start and end tags in HTMLParser according to the HTML5...
Serhiy Storchaka [Fri, 4 Jul 2025 15:28:00 +0000 (18:28 +0300)] 
[3.12] gh-135661: Fix parsing start and end tags in HTMLParser according to the HTML5 standard (GH-135930) (GH-136268)

* Whitespaces no longer accepted between `</` and the tag name.
  E.g. `</ script>` does not end the script section.

* Vertical tabulation (`\v`) and non-ASCII whitespaces no longer recognized
  as whitespaces. The only whitespaces are `\t\n\r\f `.

* Null character (U+0000) no longer ends the tag name.

* Attributes and slashes after the tag name in end tags are now ignored,
  instead of terminating after the first `>` in quoted attribute value.
  E.g. `</script/foo=">"/>`.

* Multiple slashes and whitespaces between the last attribute and closing `>`
  are now ignored in both start and end tags. E.g. `<a foo=bar/ //>`.

* Multiple `=` between attribute name and value are no longer collapsed.
  E.g. `<a foo==bar>` produces attribute "foo" with value "=bar".

* Whitespaces between the `=` separator and attribute name or value are no
  longer ignored. E.g. `<a foo =bar>` produces two attributes "foo" and
  "=bar", both with value None; `<a foo= bar>` produces two attributes:
  "foo" with value "" and "bar" with value None.

* Fix data loss after unclosed script or style tag (gh-86155).

Also backport test.support.subTests() (gh-135120).

---------
(cherry picked from commit 0243f97cbadec8d985e63b1daec5d1cbc850cae3)

Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com>
Co-authored-by: Waylan Limberg <waylan.limberg@icloud.com>
4 months ago[3.12] gh-135462: Fix quadratic complexity in processing special input in HTMLParser...
Serhiy Storchaka [Thu, 3 Jul 2025 22:12:10 +0000 (01:12 +0300)] 
[3.12] gh-135462: Fix quadratic complexity in processing special input in HTMLParser (GH-135464) (GH-135483)

End-of-file errors are now handled according to the HTML5 specs --
comments and declarations are automatically closed, tags are ignored.
(cherry picked from commit 6eb6c5dbfb528bd07d77b60fd71fd05d81d45c41)

4 months ago[3.12] gh-132415: Update vendored setuptools in ``Lib/test/wheeldata` (GH-132887...
Łukasz Langa [Wed, 11 Jun 2025 15:28:51 +0000 (17:28 +0200)] 
[3.12] gh-132415: Update vendored setuptools in ``Lib/test/wheeldata` (GH-132887) (GH-135393)

(cherry picked from commit c9f3f5b4ed52d7bed6073ffa39717ece47202558)

Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
4 months ago[3.12] gh-132415: Use shutil.which() in missing_compiler_executable() (GH-132906...
Miss Islington (bot) [Wed, 11 Jun 2025 15:00:01 +0000 (17:00 +0200)] 
[3.12] gh-132415: Use shutil.which() in missing_compiler_executable() (GH-132906) (GH-135392)

Replace deprecated distutils.spawn.find_executable() with
shutil.which() in missing_compiler_executable() of test.support.
(cherry picked from commit de6482eda3a46cc9c9a03fb9ba57295ab99b4722)

Co-authored-by: Victor Stinner <vstinner@python.org>
5 months agoPost 3.12.11
Thomas Wouters [Tue, 3 Jun 2025 18:31:47 +0000 (20:31 +0200)] 
Post 3.12.11

5 months agoPython 3.12.11 v3.12.11
Thomas Wouters [Tue, 3 Jun 2025 15:41:33 +0000 (17:41 +0200)] 
Python 3.12.11

5 months ago[3.12] gh-135034: Remove test_realpath_permission (GH-135093)
Petr Viktorin [Tue, 3 Jun 2025 14:58:06 +0000 (16:58 +0200)] 
[3.12] gh-135034: Remove test_realpath_permission (GH-135093)

The test was added in gh-110298, with a fix that was never backported
to 3.12 and below.
It was most likely skipped in the GHA run.

5 months ago[3.12] gh-128840: Fix parsing long IPv6 addresses with embedded IPv4 address (GH...
Miss Islington (bot) [Tue, 3 Jun 2025 14:25:28 +0000 (16:25 +0200)] 
[3.12] gh-128840: Fix parsing long IPv6 addresses with embedded IPv4 address (GH-134836) (GH-134847)

(cherry picked from commit d83576bf48d07d5e29d5d171c4e25afb048622aa)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Co-authored-by: Łukasz Langa <lukasz@langa.pl>
5 months ago[3.12] gh-123409: fix `IPv6Address.reverse_pointer` for IPv4-mapped addresses (GH...
Miss Islington (bot) [Tue, 3 Jun 2025 14:08:03 +0000 (16:08 +0200)] 
[3.12] gh-123409: fix `IPv6Address.reverse_pointer` for IPv4-mapped addresses (GH-123419) (GH-135086)

Fix functionality that was broken with better textual representation for IPv4-mapped addresses (gh-87799)
(cherry picked from commit 77a2fb4bf1a1b160d6ce105508288fc77f636943)

Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
5 months ago[3.12] gh-135034: Normalize link targets in tarfile, add `os.path.realpath(strict...
T. Wouters [Tue, 3 Jun 2025 14:00:21 +0000 (16:00 +0200)] 
[3.12] gh-135034: Normalize link targets in tarfile, add `os.path.realpath(strict='allow_missing')` (GH-135037) (GH-135066)

Addresses CVEs 2024-12718, 2025-4138, 2025-4330, and 2025-4517.

(cherry picked from commit 3612d8f51741b11f36f8fb0494d79086bac9390a)

Co-authored-by: Łukasz Langa <lukasz@langa.pl>
Signed-off-by: Łukasz Langa <lukasz@langa.pl>
Co-authored-by: Petr Viktorin <encukou@gmail.com>
Co-authored-by: Seth Michael Larson <seth@python.org>
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
5 months ago[3.12] gh-87799: Improve the textual representation of IPv4-mapped IPv6 addresses...
Miss Islington (bot) [Tue, 3 Jun 2025 13:45:32 +0000 (15:45 +0200)] 
[3.12] gh-87799: Improve the textual representation of IPv4-mapped IPv6 addresses (GH-29345) (GH-135081)

Represent IPv4-mapped IPv6 address as x:x:x:x:x:x:d.d.d.d,
where the 'x's are the hexadecimal values
of the six high-order 16-bit pieces of the address,
and the 'd's are the decimal values
of the four low-order 8-bit pieces of the address
(standard IPv4 representation).

(cherry picked from commit f22bf8e3cf899896cf587099d29290cb43aa9724)

Co-authored-by: opavliuk <40970635+opavlyuk@users.noreply.github.com>
Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com>
5 months ago[3.12] gh-128840: Limit the number of parts in IPv6 address parsing (GH-128841) ...
Miss Islington (bot) [Mon, 26 May 2025 03:34:44 +0000 (05:34 +0200)] 
[3.12] gh-128840: Limit the number of parts in IPv6 address parsing (GH-128841) (#134612)

gh-128840: Limit the number of parts in IPv6 address parsing (GH-128841)

GH-128840: Limit the number of parts in IPv6 address parsing
Limit length of IP address string to 39

---------
(cherry picked from commit 47f1161d3a2bec52b5b5e952150141709c247da2)

Co-authored-by: Seth Michael Larson <seth@python.org>
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Co-authored-by: Gregory P. Smith <greg@krypto.org>
5 months ago[3.12] gh-134062: Fix hash collisions in IPv4Network and IPv6Network (GH-134063)...
Miss Islington (bot) [Mon, 26 May 2025 03:34:22 +0000 (05:34 +0200)] 
[3.12] gh-134062: Fix hash collisions in IPv4Network and IPv6Network (GH-134063) (#134478)

gh-134062: Fix hash collisions in IPv4Network and IPv6Network (GH-134063)
(cherry picked from commit f3fc0c16e08b317cb201cf1073e934e6909f1251)

gh-134062: Fix hash collisions in IPv4Network and IPv6Network
gh-134062: Add hash collision regression test

Co-authored-by: Mike Salvatore <mike.s.salvatore@gmail.com>
5 months ago[3.12] gh-133767: Fix use-after-free in the unicode-escape decoder with an error...
Serhiy Storchaka [Mon, 26 May 2025 03:33:22 +0000 (06:33 +0300)] 
[3.12] gh-133767: Fix use-after-free in the unicode-escape decoder with an error handler (GH-129648) (GH-133944) (#134337)

If the error handler is used, a new bytes object is created to set as
the object attribute of UnicodeDecodeError, and that bytes object then
replaces the original data. A pointer to the decoded data will became invalid
after destroying that temporary bytes object. So we need other way to return
the first invalid escape from _PyUnicode_DecodeUnicodeEscapeInternal().

_PyBytes_DecodeEscape() does not have such issue, because it does not
use the error handlers registry, but it should be changed for compatibility
with _PyUnicode_DecodeUnicodeEscapeInternal().
(cherry picked from commit 9f69a58623bd01349a18ba0c7a9cb1dad6a51e8e)
(cherry picked from commit 6279eb8c076d89d3739a6edb393e43c7929b429d)

5 months ago[3.12] gh-133410: Fix PR detection in build workflow (GH-133671) (#134057)
Miss Islington (bot) [Thu, 15 May 2025 14:04:54 +0000 (16:04 +0200)] 
[3.12] gh-133410: Fix PR detection in build workflow (GH-133671) (#134057)

Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
5 months ago[3.12] Docs: remove link elements in builders other than HTML (GH-133720) (#134007)
Miss Islington (bot) [Wed, 14 May 2025 15:23:12 +0000 (17:23 +0200)] 
[3.12] Docs: remove link elements in builders other than HTML (GH-133720) (#134007)

Co-authored-by: Maciej Olko <maciej.olko@affirm.com>
6 months ago[3.12] GH-133410: Use commit hashes for change detection (gh-133416) (#133426)
Miss Islington (bot) [Mon, 5 May 2025 23:48:34 +0000 (01:48 +0200)] 
[3.12] GH-133410: Use commit hashes for change detection (gh-133416) (#133426)

GH-133410: Use commit hashes for change detection (gh-133416)
(cherry picked from commit d530e74e444fc483f6d2077f701160e55d3003d8)

Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
6 months ago[3.12] gh-132553: Build the perf tool without buildid cache (GH-132663) (#132718)
Victor Stinner [Fri, 25 Apr 2025 01:26:30 +0000 (03:26 +0200)] 
[3.12] gh-132553: Build the perf tool without buildid cache (GH-132663) (#132718)

gh-132553: Build the perf tool without buildid cache (GH-132663)

(cherry picked from commit e01e5829020e517eb68a47da4dd65926a9d144de)

Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
6 months ago[3.12] Docs: Migrate entirely to PSF hosted plausible for analytics (GH-132648) ...
Miss Islington (bot) [Fri, 18 Apr 2025 04:21:14 +0000 (06:21 +0200)] 
[3.12] Docs: Migrate entirely to PSF hosted plausible for analytics (GH-132648) (#132664)

Docs: Migrate entirely to PSF hosted plausible for analytics (GH-132648)
(cherry picked from commit 1d529cbc892b824b387d672899265ed4258b2222)

Co-authored-by: Ee Durbin <ewdurbin@gmail.com>
7 months agoPost 3.12.10
Thomas Wouters [Tue, 8 Apr 2025 14:17:38 +0000 (16:17 +0200)] 
Post 3.12.10

7 months agoPython 3.12.10 v3.12.10
Thomas Wouters [Tue, 8 Apr 2025 11:35:30 +0000 (13:35 +0200)] 
Python 3.12.10

7 months ago[3.12] gh-117779: Fix reading duplicated entries in zipfile by name (GH-129254) ...
Miss Islington (bot) [Tue, 8 Apr 2025 11:13:09 +0000 (13:13 +0200)] 
[3.12] gh-117779: Fix reading duplicated entries in zipfile by name (GH-129254) (GH-132264)

(cherry picked from commit 0f04f2456a2ff996cc670342a287928ab5f9b706)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
7 months ago[3.12] gh-101137: Add `text/x-rst` to `mimetypes` (GH-118593) (GH-118599)
sobolevn [Tue, 8 Apr 2025 10:40:41 +0000 (13:40 +0300)] 
[3.12] gh-101137: Add `text/x-rst` to `mimetypes` (GH-118593) (GH-118599)

7 months ago[3.12] gh-102136: Add -m to options that work with -i (GH-119271) (GH-119286)
Miss Islington (bot) [Tue, 8 Apr 2025 10:32:06 +0000 (12:32 +0200)] 
[3.12] gh-102136: Add -m to options that work with -i (GH-119271) (GH-119286)

(cherry picked from commit 172690227e771c2e8ab137815073e3a172c08dec)

Co-authored-by: Melanie Arbor <hellomelaniec@gmail.com>
Co-authored-by: Carol Willing <carolcode@willingconsulting.com>
7 months ago[3.12] gh-130775: Allow negative locations in `ast` (GH-130795) (#132260)
sobolevn [Tue, 8 Apr 2025 10:19:23 +0000 (13:19 +0300)] 
[3.12] gh-130775: Allow negative locations in `ast` (GH-130795) (#132260)

(cherry picked from commit bc5233b6a5cdd8f77a4737ce317f94110869c082)

Co-authored-by: sobolevn <mail@sobolevn.me>
Co-authored-by: Victor Stinner <vstinner@python.org>
7 months ago[3.12] gh-130164: Fix inspect.Signature.bind() handling of positional-only args witho...
Miss Islington (bot) [Tue, 8 Apr 2025 09:39:45 +0000 (11:39 +0200)] 
[3.12] gh-130164: Fix inspect.Signature.bind() handling of positional-only args without defaults (GH-130192) (GH-132259)

Follow-up to 9c15202.
(cherry picked from commit dab456dcefd886bde44eb204dc6f1b2f14de0e9d)

Co-authored-by: Jacob Walls <jacobtylerwalls@gmail.com>
7 months ago[3.12] gh-132021: Add bool type to the list of allowed JSON key types (GH-132048...
Miss Islington (bot) [Tue, 8 Apr 2025 08:43:45 +0000 (10:43 +0200)] 
[3.12] gh-132021: Add bool type to the list of allowed JSON key types (GH-132048) (#132256)

gh-132021: Add bool type to the list of allowed JSON key types (GH-132048)
(cherry picked from commit 403886c28ddb350bbcaea478f8d754ed14e10337)

Co-authored-by: Srinivas Reddy Thatiparthy (తాటిపర్తి శ్రీనివాస్ రెడ్డి) <thatiparthysreenivas@gmail.com>
Co-authored-by: Eric V. Smith <ericvsmith@users.noreply.github.com>
7 months ago[3.12] gh-116608: undeprecate functional importlib.resources API (#132206)
Thomas Grainger [Tue, 8 Apr 2025 08:36:29 +0000 (09:36 +0100)] 
[3.12] gh-116608: undeprecate functional importlib.resources API (#132206)

Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
7 months ago[3.12] gh-115684: Clarify datetime `replace` documentation (GH-116519) (#131694)
David Lowry-Duda [Tue, 8 Apr 2025 08:30:12 +0000 (04:30 -0400)] 
[3.12] gh-115684: Clarify datetime `replace` documentation (GH-116519) (#131694)

* Clarify datetime `replace` documentation

In GH-115684, HopedForLuck noted that `datetime.date.replace()`
documentation was confusing because it looked like it would be changing
immutable objects.

This documentation change specifies that the `replace()` methods in
`datetime` return new objects. This uses similar wording to the
documentation for `datetime.combine()`, which specifies that a new
datetime is returned. This is also similar to wording for
`string.replace()`, except `string.replace()` emphasizes that a "copy"
is returned.

Resolves GH-115684.

* Include reviewer comments

Thanks Privat33r-dev for the comments!

---------
(cherry picked from commit d2d886215cf694d5f3e7f0cbd76507a96bac322b)

Co-authored-by: Paul Ganssle <1377457+pganssle@users.noreply.github.com>
7 months ago[3.12] Add psfhosted Plausible instance to analytics (GH-132252) (#132254)
Miss Islington (bot) [Tue, 8 Apr 2025 07:53:44 +0000 (09:53 +0200)] 
[3.12] Add psfhosted Plausible instance to analytics (GH-132252) (#132254)

Add psfhosted Plausible instance to analytics (GH-132252)
(cherry picked from commit 40844164b1d1d0f072990ff94202c348771676d6)

Co-authored-by: Ee Durbin <ewdurbin@gmail.com>
7 months ago[3.12] gh-131809: Upgrade vendored expat to 2.7.1 (GH-132192) (#132237)
Miss Islington (bot) [Mon, 7 Apr 2025 21:21:02 +0000 (23:21 +0200)] 
[3.12] gh-131809: Upgrade vendored expat to 2.7.1 (GH-132192) (#132237)

* gh-131809: Upgrade vendored expat to 2.7.1 (GH-132192)
(cherry picked from commit c0de6500249469e6fc5b458d6afb6bad1b6755cd)

Co-authored-by: Gregory P. Smith <greg@krypto.org>
* make regen-sbom

---------

Co-authored-by: Gregory P. Smith <greg@krypto.org>
7 months ago[3.12] gh-130521: Add Open Graph meta tags to template pages (GH-130523) (#132238)
Miss Islington (bot) [Mon, 7 Apr 2025 21:06:29 +0000 (23:06 +0200)] 
[3.12] gh-130521: Add Open Graph meta tags to template pages (GH-130523) (#132238)

gh-130521: Add Open Graph meta tags to template pages (GH-130523)
(cherry picked from commit f5639d87f59043d3075dbd3d9075f30e872dd91a)

Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
7 months ago[3.12] Docs HTML: Remove self-closing tags (GH-132220) (#132229)
Hugo van Kemenade [Mon, 7 Apr 2025 21:06:08 +0000 (00:06 +0300)] 
[3.12] Docs HTML: Remove self-closing tags (GH-132220) (#132229)

(cherry picked from commit ce724571b35f4e79fff1c862fcd9afa4c26b605f)

Co-authored-by: Adam Turner <9087854+aa-turner@users.noreply.github.com>
7 months ago[3.12] gh-132221: Fix `__match_args__` generation docs in `dataclasses.rst` (GH-13222...
Miss Islington (bot) [Mon, 7 Apr 2025 14:54:53 +0000 (16:54 +0200)] 
[3.12] gh-132221: Fix `__match_args__` generation docs in `dataclasses.rst` (GH-132222) (#132227)

gh-132221: Fix `__match_args__` generation docs in `dataclasses.rst` (GH-132222)
(cherry picked from commit 8b62374b344f5da852bed9f16619736d4d43936b)

Co-authored-by: sobolevn <mail@sobolevn.me>
7 months ago[3.12] gh-131852: Filter out POT-Creation-Date in msgfmt (GH-131880) (GH-132216)
Miss Islington (bot) [Mon, 7 Apr 2025 11:52:22 +0000 (13:52 +0200)] 
[3.12] gh-131852: Filter out POT-Creation-Date in msgfmt (GH-131880) (GH-132216)

(cherry picked from commit ad6a032cebf59d1668caa7e726aa5da72e1cbb5c)

Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
Co-authored-by: Tomas R. <tomas.roun8@gmail.com>
7 months ago[3.12] gh-122040: reword `Modules/xxmodule.c` module-level comment (GH-132201) (...
Miss Islington (bot) [Mon, 7 Apr 2025 08:19:54 +0000 (10:19 +0200)] 
[3.12] gh-122040: reword `Modules/xxmodule.c` module-level comment (GH-132201) (#132208)

gh-122040: reword `Modules/xxmodule.c` module-level comment (GH-132201)
(cherry picked from commit af8d1b95377917036aaedf18b9cc047d8877259c)

Co-authored-by: Sonny Ding <93831983+sonnyding1@users.noreply.github.com>
7 months ago[3.12] gh-131912: Improve description of grouping options in the format specification...
Miss Islington (bot) [Mon, 7 Apr 2025 07:26:34 +0000 (09:26 +0200)] 
[3.12] gh-131912: Improve description of grouping options in the format specification docs (GH-132030) (#132203)

(cherry picked from commit 06a110f5227ba9d52f6205fde55924a14cab36ff)

Co-authored-by: Prometheus3375 <35541026+Prometheus3375@users.noreply.github.com>
7 months ago[3.12] gh-124111: Update macOS installer to use Tcl/Tk 8.6.16. (GH-132190)
Miss Islington (bot) [Mon, 7 Apr 2025 06:01:25 +0000 (08:01 +0200)] 
[3.12] gh-124111: Update macOS installer to use Tcl/Tk 8.6.16. (GH-132190)

(cherry picked from commit c55c0201fc09336f193cfc9992dc5e506fd7172d)
Co-authored-by: Ned Deily <nad@python.org>
7 months ago[3.12] gh-131423: Update macOS installer to use OpenSSL 3.0.16. (GH-132189)
Miss Islington (bot) [Mon, 7 Apr 2025 05:41:25 +0000 (07:41 +0200)] 
[3.12] gh-131423: Update macOS installer to use OpenSSL 3.0.16. (GH-132189)

Patch by Bénédikt Tran.
(cherry picked from commit ce49022b07928d58d1aecfbcd8ea1bf1055065ed)
Co-authored-by: Ned Deily <nad@python.org>
7 months ago[3.12] gh-91132: Update macOS installer to use ncurses 6.5. (GH-129990)
Miss Islington (bot) [Mon, 7 Apr 2025 03:46:16 +0000 (05:46 +0200)] 
[3.12] gh-91132: Update macOS installer to use ncurses 6.5. (GH-129990)

(cherry picked from commit 0dbe543d70d7f014d4c1e0308f04c1d91bd815ca)

Co-authored-by: Ned Deily <nad@python.org>
7 months ago[3.12] Docs: Add a single table summary for ``cmath`` (GH-131887) (#132180)
Miss Islington (bot) [Sun, 6 Apr 2025 23:43:06 +0000 (01:43 +0200)] 
[3.12] Docs: Add a single table summary for ``cmath`` (GH-131887) (#132180)

Docs: Add a single table summary for ``cmath`` (GH-131887)
(cherry picked from commit 6eaa4aeef25f77a31768d8ba5a03f614766aba95)

Co-authored-by: Sergey B Kirpichev <skirpichev@gmail.com>
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
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>
Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
7 months ago[3.12] GH-107674: Avoid allocating boxed ints for `sys.settrace` line events (GH...
Miss Islington (bot) [Sun, 6 Apr 2025 19:48:53 +0000 (21:48 +0200)] 
[3.12] GH-107674: Avoid allocating boxed ints for `sys.settrace` line events (GH-107780) (#107841)

GH-107674: Avoid allocating boxed ints for `sys.settrace` line events (GH-107780)
(cherry picked from commit 37d8b904f8b5b660f556597b21c0933b841d18de)

Co-authored-by: Mark Shannon <mark@hotpy.org>
7 months ago[3.12] Docs: Replace dead hyperlink for CGI environment variables (GH-132137) (#132151)
Miss Islington (bot) [Sun, 6 Apr 2025 08:29:09 +0000 (10:29 +0200)] 
[3.12] Docs: Replace dead hyperlink for CGI environment variables (GH-132137) (#132151)

Docs: Replace dead hyperlink for CGI environment variables (GH-132137)
(cherry picked from commit 0a10b45dd16a8c971363d917b9ebd1266e65f710)

Co-authored-by: Srinivas Reddy Thatiparthy (తాటిపర్తి శ్రీనివాస్ రెడ్డి) <thatiparthysreenivas@gmail.com>
7 months ago[3.12] gh-132134: Add the clangd ``.cache`` directory to ``.gitignore`` (GH-132135...
Miss Islington (bot) [Sun, 6 Apr 2025 04:42:06 +0000 (06:42 +0200)] 
[3.12] gh-132134: Add the clangd ``.cache`` directory to ``.gitignore`` (GH-132135) (#132145)

gh-132134: Add the clangd ``.cache`` directory to ``.gitignore`` (GH-132135)
(cherry picked from commit 86804003ed70acbf8a2531c6784895d750c50456)

Signed-off-by: Manjusaka <me@manjusaka.me>
Co-authored-by: Nadeshiko Manju <me@manjusaka.me>
7 months ago[3.12] Fix numbered list syntax in programming.rst (GH-130158) (#132141)
Miss Islington (bot) [Sat, 5 Apr 2025 19:27:05 +0000 (21:27 +0200)] 
[3.12] Fix numbered list syntax in programming.rst (GH-130158) (#132141)

Fix numbered list syntax in programming.rst (GH-130158)
(cherry picked from commit 376631829aab72e320e19102fc55cbca5af8c733)

Co-authored-by: Rafael Fontenelle <rffontenelle@users.noreply.github.com>
7 months ago[3.12] gh-131015: Add test for bytes formatting errors (#131881) (#132114)
Bénédikt Tran [Sat, 5 Apr 2025 09:40:48 +0000 (11:40 +0200)] 
[3.12] gh-131015: Add test for bytes formatting errors (#131881) (#132114)

* gh-131015: Add test for bytes formatting errors (#131881)

Co-authored-by: Ageev Maxim <maksim170901@gmail.com>
(cherry picked from commit 05557788f3c284ede73e6f94810ec796bb9d3721)

7 months ago[3.12] Docs: document `plistlib.InvalidFileException` (GH-132069) (#132117)
Miss Islington (bot) [Sat, 5 Apr 2025 08:53:06 +0000 (10:53 +0200)] 
[3.12] Docs: document `plistlib.InvalidFileException` (GH-132069) (#132117)

Docs: document `plistlib.InvalidFileException` (GH-132069)
(cherry picked from commit 99e9798d612222785db427eb295c847147fe5e78)

Co-authored-by: Yuki Kobayashi <drsuaimqjgar@gmail.com>
7 months ago[3.12] Fix typo in `template_replace()` test helper docstring (GH-132094) (#132096)
Miss Islington (bot) [Fri, 4 Apr 2025 18:04:01 +0000 (20:04 +0200)] 
[3.12] Fix typo in `template_replace()` test helper docstring (GH-132094) (#132096)

Fix typo in `template_replace()` test helper docstring (GH-132094)
(cherry picked from commit ac3a7bfeccb752a59d88861e45b454db360aa69d)

Co-authored-by: Victorien <65306057+Viicos@users.noreply.github.com>
7 months ago[3.12] gh-128632: fix segfault on nested __classdict__ type param (GH… (#132090)
Tomasz Pytel [Fri, 4 Apr 2025 15:48:57 +0000 (11:48 -0400)] 
[3.12] gh-128632: fix segfault on nested __classdict__ type param (GH… (#132090)

(cherry picked from commit 891c61c1fa480928dd60cce8bbc8764630c95025)

Co-authored-by: Tomasz Pytel <tompytel@gmail.com>
7 months ago[3.12] gh-130655: Add a test for corrupt `.mo` files in `gettext` (GH-131911) (#132080)
Miss Islington (bot) [Fri, 4 Apr 2025 14:49:48 +0000 (16:49 +0200)] 
[3.12] gh-130655: Add a test for corrupt `.mo` files in `gettext` (GH-131911) (#132080)

gh-130655: Add a test for corrupt `.mo` files in `gettext` (GH-131911)
(cherry picked from commit a126cefc176a7ddbd1a09ce560195f6fd81a5c92)

Co-authored-by: Tomas R <tomas.roun8@gmail.com>
7 months ago[3.12] gh-130655: Add a test for bad magic numbers in `.mo` files parsed by `gettext...
Miss Islington (bot) [Fri, 4 Apr 2025 14:49:36 +0000 (16:49 +0200)] 
[3.12] gh-130655: Add a test for bad magic numbers in `.mo` files parsed by `gettext` (GH-131909) (#132078)

gh-130655: Add a test for bad magic numbers in `.mo` files parsed by `gettext` (GH-131909)
(cherry picked from commit 16a6270aa61c86c430a308c0f766a69a88c9a3a5)

Co-authored-by: Tomas R <tomas.roun8@gmail.com>
7 months ago[3.12] gh-130655: Add tests for `gettext.find()` (GH-130691) (#132083)
Miss Islington (bot) [Fri, 4 Apr 2025 14:39:22 +0000 (16:39 +0200)] 
[3.12] gh-130655: Add tests for `gettext.find()` (GH-130691) (#132083)

gh-130655: Add tests for `gettext.find()` (GH-130691)

(cherry picked from commit 3118693a1a3db0da96c565a2de015a806c892625)

Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
Co-authored-by: Tomas R. <tomas.roun8@gmail.com>
7 months ago[3.12] gh-132075: Fix possible use of sockaddr structures with uninitialized members...
Miss Islington (bot) [Fri, 4 Apr 2025 14:29:12 +0000 (16:29 +0200)] 
[3.12] gh-132075: Fix possible use of sockaddr structures with uninitialized members (GH-132076) (GH-132087)

Now all structure members are initialized with zeroes by default.
(cherry picked from commit 345baa77ba2ce3b8ea8f2fad84754e5cc0b10938)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
7 months agogh-131423: Update OpenSSL build tag to 3.0.16.2 to fix ARM64 crash (GH-132051)
Steve Dower [Thu, 3 Apr 2025 18:04:29 +0000 (19:04 +0100)] 
gh-131423: Update OpenSSL build tag to 3.0.16.2 to fix ARM64 crash (GH-132051)

Backported from 24decb05ddda445d96f45e2cd0b39497318c98d4

7 months ago[3.12] gh-130197: pygettext: Test the --escape option (GH-131902) (GH-132033)
Tomas R. [Wed, 2 Apr 2025 20:29:02 +0000 (22:29 +0200)] 
[3.12] gh-130197: pygettext: Test the --escape option (GH-131902) (GH-132033)

(cherry picked from commit 87d9983994e9a423e9e0050b1bbee52ebaf84367)

7 months ago[3.12] gh-89039: Call subclass constructors in datetime.*.replace (GH-114780) (GH...
Serhiy Storchaka [Wed, 2 Apr 2025 17:35:16 +0000 (20:35 +0300)] 
[3.12] gh-89039: Call subclass constructors in datetime.*.replace (GH-114780) (GH-131239)

When replace() method is called on a subclass of datetime, date or time,
properly call derived constructor. Previously, only the base class's
constructor was called.

Also, make sure to pass non-zero fold values when creating subclasses in
various methods. Previously, fold was silently ignored.
(cherry picked from commit 46190d9ea8a878a03d95b4e1bdcdc9ed576cf3fa)

Co-authored-by: Eugene Toder <eltoder@users.noreply.github.com>
7 months ago[3.12] gh-131888: fix ResourceWarning in test_ftplib (GH-131889) (#132010)
Miss Islington (bot) [Wed, 2 Apr 2025 12:46:40 +0000 (14:46 +0200)] 
[3.12] gh-131888: fix ResourceWarning in test_ftplib (GH-131889) (#132010)

gh-131888: fix ResourceWarning in test_ftplib (GH-131889)
(cherry picked from commit b0f77c4d250789fd1deaab4912919e2e6b89e583)

Co-authored-by: Thomas Grainger <tagrain@gmail.com>
7 months ago[3.12] gh-132002: Fix crash of `ContextVar` on unhashable `str` subtype (GH-132003...
Miss Islington (bot) [Wed, 2 Apr 2025 12:05:30 +0000 (14:05 +0200)] 
[3.12] gh-132002: Fix crash of `ContextVar` on unhashable `str` subtype (GH-132003) (#132008)

gh-132002: Fix crash of `ContextVar` on unhashable `str` subtype (GH-132003)
(cherry picked from commit ab2a3dda1d3b6668162a847bf5b6aca2855a3416)

Co-authored-by: sobolevn <mail@sobolevn.me>
7 months ago[3.12] gh-111178: Fix getsockaddrarg() undefined behavior (GH-131668) (GH-131977...
Miss Islington (bot) [Tue, 1 Apr 2025 14:56:56 +0000 (16:56 +0200)] 
[3.12] gh-111178: Fix getsockaddrarg() undefined behavior (GH-131668) (GH-131977) (#131979)

[3.13] gh-111178: Fix getsockaddrarg() undefined behavior (GH-131668) (GH-131977)

gh-111178: Fix getsockaddrarg() undefined behavior (GH-131668)

Don't pass direct references to sockaddr members since their type may
not match PyArg_ParseTuple() types. Instead, use temporary 'int' and
'unsigned char' variables, and update sockaddr members afterwards.

On FreeBSD, treat BTPROTO_HCI node name as a bytes string,
not as an integer.
(cherry picked from commit c318a03b17c3e58e9c46beb84ab7070b7baa303b)

Co-authored-by: Victor Stinner <vstinner@python.org>
(cherry picked from commit 8cd29c2b533e5a1a262238695d05f2a7c44d6455)

Co-authored-by: Victor Stinner <vstinner@python.org>
7 months ago[3.12] gh-131736: only apply `security_level` workaround in `test_ssl` for security...
Miss Islington (bot) [Tue, 1 Apr 2025 08:16:34 +0000 (10:16 +0200)] 
[3.12] gh-131736: only apply `security_level` workaround in `test_ssl` for security levels greater than 1 (GH-131739) (#131966)

gh-131736: only apply `security_level` workaround in `test_ssl` for security levels greater than 1 (GH-131739)
(cherry picked from commit 3b3720f1a26ab34377542b48eb6a6565f78ff892)

Co-authored-by: Will Childs-Klein <willck93@gmail.com>
7 months ago[3.12] Minor improvements to the programming FAQ (GH-127261) (#131965)
Miss Islington (bot) [Tue, 1 Apr 2025 07:26:36 +0000 (09:26 +0200)] 
[3.12] Minor improvements to the programming FAQ (GH-127261) (#131965)

Minor improvements to the programming FAQ (GH-127261)
(cherry picked from commit 23a658b9af410b72beeb28ba4ace2d83896c5631)

Co-authored-by: Rafael Fontenelle <rffontenelle@users.noreply.github.com>
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
7 months ago[3.12] gh-125957: sync argument naming in sphinx docs of the cmath and help() (GH...
Miss Islington (bot) [Tue, 1 Apr 2025 07:23:33 +0000 (09:23 +0200)] 
[3.12] gh-125957: sync argument naming in sphinx docs of the cmath and help() (GH-125958) (#131963)

gh-125957: sync argument naming in sphinx docs of the cmath and help() (GH-125958)
(cherry picked from commit 0a3eb8855ccea52c618db1cf09840c6368a3745f)

Co-authored-by: Sergey B Kirpichev <skirpichev@gmail.com>
Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
7 months ago[3.12] gh-129917: Update installers to use SQLite 3.49.1 (#131025) (#131958)
Erlend E. Aasland [Mon, 31 Mar 2025 21:39:06 +0000 (23:39 +0200)] 
[3.12] gh-129917: Update installers to use SQLite 3.49.1 (#131025) (#131958)

(cherry picked from commit 45a3ab5a81769eadd94da3e26eb9bb2f3ae80fb1)

Co-authored-by: Ned Deily <nad@python.org>
7 months ago[3.12] gh-131865: Properly apply exported CFLAGS for dtrace/systemtap builds (GH...
Miss Islington (bot) [Mon, 31 Mar 2025 18:29:04 +0000 (20:29 +0200)] 
[3.12] gh-131865: Properly apply exported CFLAGS for dtrace/systemtap builds (GH-131866) (#131951)

gh-131865: Properly apply exported CFLAGS for dtrace/systemtap builds (GH-131866)

When using --with-dtrace the resulting object file could be missing
specific CFLAGS exported by the build system due to the systemtap
script using specific defaults.

Exporting the CC and CFLAGS variables before the dtrace invocation
allows us to properly apply CFLAGS exported by the build system
even when cross-compiling.

The fix does not affect the dtrace invocation on Solaris/macOS.
(cherry picked from commit 0cd4befb02df07c0b320cd6246227c13e57b2efb)

Co-authored-by: stratakis <cstratak@redhat.com>
7 months ago[3.12] gh-126033: fix UAF in `xml.etree.ElementTree.Element.remove` when concurrent...
Miss Islington (bot) [Mon, 31 Mar 2025 12:50:13 +0000 (14:50 +0200)] 
[3.12] gh-126033: fix UAF in `xml.etree.ElementTree.Element.remove` when concurrent mutations happen (GH-126124) (#131930)

gh-126033: fix UAF in `xml.etree.ElementTree.Element.remove` when concurrent mutations happen (GH-126124)
(cherry picked from commit bab1398a47f6d0cfc1be70497f306874c749ef7c)

Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
7 months ago[3.12] gh-126037: fix UAF in `xml.etree.ElementTree.Element.find*` when concurrent...
Bénédikt Tran [Mon, 31 Mar 2025 12:47:22 +0000 (14:47 +0200)] 
[3.12] gh-126037: fix UAF in `xml.etree.ElementTree.Element.find*` when concurrent mutations happen (#127964) (#131932)

gh-126037: fix UAF in `xml.etree.ElementTree.Element.find*` when concurrent mutations happen (#127964)

We fix a use-after-free in the `find`, `findtext` and `findall` methods of `xml.etree.ElementTree.Element`
objects that can be triggered when the tag to find implements an `__eq__` method that mutates the
element being queried.

(cherry picked from commit c57623c221d46daeaedfbf2b32d041fde0c882de)

7 months ago[3.12] gh-131885: Document that `dict.setdefault` and `dict.get` take no keyword...
Miss Islington (bot) [Sun, 30 Mar 2025 09:29:49 +0000 (11:29 +0200)] 
[3.12] gh-131885: Document that `dict.setdefault` and `dict.get` take no keyword arguments (GH-128208) (#131894)

gh-131885: Document that `dict.setdefault` and `dict.get` take no keyword arguments (GH-128208)
(cherry picked from commit edfbd8c062285e83dc5f596288df2a762e68bcdc)

Co-authored-by: Adam Dangoor <adamdangoor@gmail.com>
7 months ago[3.12] gh-129994: update docs when using `dualstack_ipv6` in `socket.create_server...
Miss Islington (bot) [Sun, 30 Mar 2025 08:28:26 +0000 (10:28 +0200)] 
[3.12] gh-129994: update docs when using `dualstack_ipv6` in `socket.create_server` (GH-129996) (#131891)

gh-129994: update docs when using `dualstack_ipv6` in `socket.create_server` (GH-129996)
(cherry picked from commit 044a1e13d5cfc91b0a8774e936877e91cbac3a16)

Co-authored-by: Alexander Ershov <150328014+AEErshov@users.noreply.github.com>
7 months ago[3.12] gh-131050: skip `test_dh_params` when TLS library lacks FFDHE ciphersuites...
Miss Islington (bot) [Sat, 29 Mar 2025 10:51:11 +0000 (11:51 +0100)] 
[3.12] gh-131050: skip `test_dh_params` when TLS library lacks FFDHE ciphersuites (GH-131051) (#131875)

gh-131050: skip `test_dh_params` when TLS library lacks FFDHE ciphersuites (GH-131051)
(cherry picked from commit be2d2181e62cd138b0cdf80ebc0dd4058187c52a)

Co-authored-by: Will Childs-Klein <willck93@gmail.com>
Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
7 months ago[3.12] gh-127541: Update os.walk example (GH-127765) (#131873)
Miss Islington (bot) [Sat, 29 Mar 2025 10:34:35 +0000 (11:34 +0100)] 
[3.12] gh-127541: Update os.walk example (GH-127765) (#131873)

gh-127541: Update os.walk example (GH-127765)

Update os.walk example to be more modern, skip `__pycache__` dirs rather than `CVS` dirs.
(cherry picked from commit a5949986d631391d37b1b329ad8badcf2000f9a9)

Co-authored-by: Totosuki <116938397+totosuki@users.noreply.github.com>
Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
7 months agogh-131423: Update to OpenSSL 3.0.16. (GH-131839)
Steve Dower [Fri, 28 Mar 2025 15:29:20 +0000 (15:29 +0000)] 
gh-131423: Update to OpenSSL 3.0.16. (GH-131839)

The bin tag is 3.0.16.1 because we rebuilt without uplink support to fix gh-131804.
This PR also prevents making calls that are now unsafe without uplink, and updates
the tests to property interpret these failures as unsupported.

7 months ago[3.12] gh-131807: fix ResourceWarning in test_ucn.py (GH-131808) (#131846)
Miss Islington (bot) [Fri, 28 Mar 2025 15:12:59 +0000 (16:12 +0100)] 
[3.12] gh-131807: fix ResourceWarning in test_ucn.py (GH-131808) (#131846)

gh-131807: fix ResourceWarning in test_ucn.py (GH-131808)
(cherry picked from commit adb67ed7e465410829ac0b1f903ec5678e0e51cc)

Co-authored-by: Thomas Grainger <tagrain@gmail.com>
Co-authored-by: Victor Stinner <vstinner@python.org>
7 months ago[3.12] gh-127949: fix resource warnings in `test_tasks.py` (GH-128172) (#131806)
Miss Islington (bot) [Fri, 28 Mar 2025 14:25:39 +0000 (15:25 +0100)] 
[3.12] gh-127949: fix resource warnings in `test_tasks.py` (GH-128172) (#131806)

* gh-127949: fix resource warnings in `test_tasks.py` (GH-128172)
(cherry picked from commit b66a4ad9fc32b63da2ba10db24cbc8f4e29f781a)

Co-authored-by: Thomas Grainger <tagrain@gmail.com>
Co-authored-by: Kumar Aditya <kumaraditya@python.org>
7 months ago[3.12] gh-131740: Update PyUnstable_GC_VisitObjects to traverse perm gen (#131828)
Donghee Na [Fri, 28 Mar 2025 13:55:58 +0000 (22:55 +0900)] 
[3.12] gh-131740: Update PyUnstable_GC_VisitObjects to traverse perm gen (#131828)

7 months ago[3.12] gh-128446: Run Windows CI tests on each commit (GH-131702) (#131706)
Miss Islington (bot) [Fri, 28 Mar 2025 11:08:47 +0000 (12:08 +0100)] 
[3.12] gh-128446: Run Windows CI tests on each commit (GH-131702) (#131706)

gh-128446: Run Windows CI tests on each commit (GH-131702)
(cherry picked from commit 7d9442f0d55a7169940b9371d6e58a7c2ec1fa8a)

Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
7 months ago[3.12] gh-131818: Add imply `-P` in `-I`'s help message (GH-131819) (#131823)
Miss Islington (bot) [Fri, 28 Mar 2025 08:09:03 +0000 (09:09 +0100)] 
[3.12] gh-131818: Add imply `-P` in `-I`'s help message (GH-131819) (#131823)

gh-131818: Add imply `-P` in `-I`'s help message (GH-131819)
(cherry picked from commit 8bd88e2827b2a887c2ea8e5ed0c0575704bfacdf)

Co-authored-by: Hang <bebound@gmail.com>
7 months ago[3.12] Fix typo in importlib.metadata.rst (gh-131596) (#131631)
Miss Islington (bot) [Thu, 27 Mar 2025 13:43:03 +0000 (14:43 +0100)] 
[3.12] Fix typo in importlib.metadata.rst (gh-131596) (#131631)

Fix typo in importlib.metadata.rst (gh-131596)
(cherry picked from commit 5fc889ffbfd271c651f563ab0afe2d345bacbca5)

Co-authored-by: Zsolt Dollenstein <zsol.zsol@gmail.com>
7 months ago[3.12] gh-131762: Fixed dereferencing the pointer 'parser_token->metadata' with a...
Miss Islington (bot) [Wed, 26 Mar 2025 19:01:36 +0000 (20:01 +0100)] 
[3.12] gh-131762: Fixed dereferencing the pointer 'parser_token->metadata' with a NULL value (GH-131764) (#131775)

gh-131762: Fixed dereferencing the pointer 'parser_token->metadata' with a NULL value (GH-131764)
(cherry picked from commit 2c686a9ac243800b630d4a09622c8eb789f5b354)

Co-authored-by: rialbat <47256826+rialbat@users.noreply.github.com>
7 months ago[3.12] gh-131649: fix test_string_literals SyntaxWarning (GH-131650) (GH-131766)...
Miss Islington (bot) [Wed, 26 Mar 2025 16:47:55 +0000 (17:47 +0100)] 
[3.12] gh-131649: fix test_string_literals SyntaxWarning (GH-131650) (GH-131766) (#131772)

[3.13] gh-131649: fix test_string_literals SyntaxWarning (GH-131650) (GH-131766)

(cherry picked from commit 2d83891dfd51f595de68b0336b3bfc876f7b2507)
(cherry picked from commit 5bcb476df1127bffcad8f37141d8140221a7b43b)

Co-authored-by: Brian Schubert <brianm.schubert@gmail.com>
Co-authored-by: Thomas Grainger <tagrain@gmail.com>
7 months ago[3.12] gh-131741: Add documentation for Windows version detection change in `platform...
Miss Islington (bot) [Wed, 26 Mar 2025 15:00:08 +0000 (16:00 +0100)] 
[3.12] gh-131741: Add documentation for Windows version detection change in `platform` (GH-131742) (#131768)

gh-131741: Add documentation for Windows version detection change in `platform` (GH-131742)

Document the behavior change between 3.11 & 3.12, where ``platform`` now correctly detects Windows 11 and Windows Server releases past Windows Server 2012.
(cherry picked from commit b9ca438daab6a4e2513ab38171e94c75da03d6e3)

Co-authored-by: Idan Noiman <idann@users.noreply.github.com>
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: Wulian <1055917385@qq.com>
7 months ago[3.12] gh-131677: Fix flaky test_lru_cache_threaded3 (gh-131679) (gh-131693)
Miss Islington (bot) [Mon, 24 Mar 2025 20:59:03 +0000 (21:59 +0100)] 
[3.12] gh-131677: Fix flaky test_lru_cache_threaded3 (gh-131679) (gh-131693)

The call to `with self.subTest(...)` was not thread-safe.
(cherry picked from commit a1232459860235f4fb7896cc95966d87a51cbe32)

Co-authored-by: Sam Gross <colesbury@gmail.com>
7 months ago[3.12] gh-131670: Fix crash in `anext()` when `__anext__` is sync and raises (GH...
Miss Islington (bot) [Mon, 24 Mar 2025 19:18:29 +0000 (20:18 +0100)] 
[3.12] gh-131670: Fix crash in `anext()` when `__anext__` is sync and raises (GH-131682) (#131687)

gh-131670: Fix crash in `anext()` when `__anext__` is sync and raises (GH-131682)
(cherry picked from commit 929afd1d6ee4fb89ac818037effe6577947103de)

Co-authored-by: sobolevn <mail@sobolevn.me>
Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
7 months ago[3.12] Docs: Fix documentation for "PyTypeObject Definition" (GH-130936) (GH-131459)
Miss Islington (bot) [Mon, 24 Mar 2025 12:59:40 +0000 (13:59 +0100)] 
[3.12] Docs: Fix documentation for "PyTypeObject Definition" (GH-130936) (GH-131459)

The structure definition for `PyTypeObject` is in `Include/cpython/object.h`,
not in `Include/object.h`.
(cherry picked from commit a0478c9f0c6d6a75ca35a8dc2c74d3b58877f094)

Co-authored-by: Yuki Kobayashi <drsuaimqjgar@gmail.com>
7 months ago[3.12] gh-131045: [Enum] fix flag containment checks when using values (GH-131053...
Bénédikt Tran [Mon, 24 Mar 2025 09:31:24 +0000 (10:31 +0100)] 
[3.12] gh-131045: [Enum] fix flag containment checks when using values (GH-131053) (#131232)

* gh-131045: [Enum] fix flag containment checks when using values (GH-131053)

Check would fail if value would create a pseudo-member, but that member
had not yet been created.  We now attempt to create a pseudo-member for
a passed-in value first.

---------

Co-authored-by: Ethan Furman <ethan@stoneleaf.us>
Co-authored-by: Tomas R. <tomas.roun8@gmail.com>
7 months ago[3.12] gh-131357: Add a set of asserts to test.test_capi.test_bytearray (GH-131554...
Nybblista [Sun, 23 Mar 2025 17:43:12 +0000 (20:43 +0300)] 
[3.12] gh-131357: Add a set of asserts to test.test_capi.test_bytearray (GH-131554) (#131629)

[3.12] gh-131357: Add a set of asserts to test.test_capi.test_bytearray (#131554)

add a set of asserts to test.test_capi.test_bytearray

1. Assert empty bytearray object for PyByteArray_Check.
2. Assert empty bytearray object for PyByteArray_CheckExact.
3. Assert 0-size bytearray object for PyByteArray_Size.
4. Assert empty bytearray object for PyByteArray_AsString.
5. Assert concatenation of the bytearray object with itself for PyByteArray_Concat.

(cherry picked from commit f3bf304c2799c31c045033f22db7eb8766a5f939)

7 months ago[3.12] gh-130283: update deprecated links and examples in `urllib.request` docs ...
Miss Islington (bot) [Sun, 23 Mar 2025 13:36:32 +0000 (14:36 +0100)] 
[3.12] gh-130283: update deprecated links and examples in `urllib.request` docs (GH-130284) (#131627)

gh-130283: update deprecated links and examples in `urllib.request` docs (GH-130284)
(cherry picked from commit fd459b115330b089da26a0555f45afced597942a)

Co-authored-by: Kanishk Pachauri <itskanishkp.py@gmail.com>
Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
7 months ago[3.12] gh-121529: Document `from_` parameter in `_mboxMMDF` public methods (GH-121530...
Miss Islington (bot) [Sun, 23 Mar 2025 12:18:32 +0000 (13:18 +0100)] 
[3.12] gh-121529: Document `from_` parameter in `_mboxMMDF` public methods (GH-121530) (#131622)

gh-121529: Document `from_` parameter in `_mboxMMDF` public methods (GH-121530)
(cherry picked from commit 557d2d20d484a7b22da39cdb876f6312ab66d561)

Co-authored-by: Sebb <sebbASF@users.noreply.github.com>
7 months ago[3.12] gh-131418: remove unused legacy typedefs in `{md5,sha1}module.c` (GH-131420...
Miss Islington (bot) [Sun, 23 Mar 2025 11:39:46 +0000 (12:39 +0100)] 
[3.12] gh-131418: remove unused legacy typedefs in `{md5,sha1}module.c` (GH-131420) (#131619)

gh-131418: remove unused legacy typedefs in `{md5,sha1}module.c` (GH-131420)

- Remove legacy typedefs `MD5_INT32` and `MD5_INT64` in `Modules/md5module.c`
- Remove legacy typedefs `SHA1_INT32` and `SHA1_INT64` in `Modules/sha1module.c`.

Those legacy typedefs were used to detect whether the host platform could
correctly implement MD5 and SHA-1, but this is no longer needed as we now
fallback to HACL* implementations.
(cherry picked from commit a9a399f0ecfeeff91425cc089057f1b95799853b)

Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
7 months ago[3.12] gh-131457: Fix typo in BNF description of function signatures (GH-131460)...
Miss Islington (bot) [Sat, 22 Mar 2025 08:01:47 +0000 (09:01 +0100)] 
[3.12] gh-131457: Fix typo in BNF description of function signatures (GH-131460) (#131576)

gh-131457: Fix typo in BNF description of function signatures (GH-131460)
(cherry picked from commit 8b7d20d3a9dc53344e3803507deafc26b5c09ca8)

Co-authored-by: Srinivas Reddy Thatiparthy (తాటిపర్తి శ్రీనివాస్ రెడ్డి) <thatiparthysreenivas@gmail.com>
7 months ago[3.12] gh-131492, gh-131461: handle exceptions in GzipFile constructor while owning...
Miss Islington (bot) [Fri, 21 Mar 2025 10:21:40 +0000 (11:21 +0100)] 
[3.12] gh-131492, gh-131461: handle exceptions in GzipFile constructor while owning resources (GH-131462) (#131519)

(cherry picked from commit ce79274e9f093bd06d2285c9af48dbcbc92173de)

Co-authored-by: Thomas Grainger <tagrain@gmail.com>
Co-authored-by: Victor Stinner <vstinner@python.org>
7 months ago[3.12] gh-88887: Cleanup `multiprocessing.resource_tracker.ResourceTracker` upon...
luccabb [Fri, 21 Mar 2025 10:15:35 +0000 (03:15 -0700)] 
[3.12] gh-88887: Cleanup `multiprocessing.resource_tracker.ResourceTracker` upon deletion (GH-130429) (#131530)

Co-authored-by: Victor Stinner <vstinner@python.org>
Co-authored-by: Gregory P. Smith <greg@krypto.org>
(cherry picked from commit f53e7de6a84a0f535efb75c3671283b801a1af0f)

7 months ago[3.12] gh-131441: Add a set of asserts to test.test_capi.test_list (#131442) (#131533)
Nybblista [Fri, 21 Mar 2025 07:56:21 +0000 (10:56 +0300)] 
[3.12] gh-131441: Add a set of asserts to test.test_capi.test_list (#131442) (#131533)

gh-131441: Add a set of asserts to test.test_capi.test_list (#131442)

(cherry picked from commit 2433cc79d79d9c1db8e53d4b9bde26e9a47fb0b9)

7 months ago[3.12] gh-70647: update docs to mention the datetime 1900 year default 2/29 issue...
Gregory P. Smith [Fri, 21 Mar 2025 04:50:10 +0000 (21:50 -0700)] 
[3.12] gh-70647: update docs to mention the datetime 1900 year default 2/29 issue (#131534)

* gh-70647: Better promote how to safely parse yearless dates in datetime.

Every four years people encounter this because it just isn't obvious.
This moves the footnote up to a note with a code example.

We'd love to change the default year value for datetime but doing
that could have other consequences for existing code.  This documented
workaround *always* works.

* doctest code within note is bad, dedent.

7 months ago[3.12] GH-121970: Extract `pydoc_topics` into a new extension (GH-131256) (#131512)
Adam Turner [Thu, 20 Mar 2025 15:40:37 +0000 (15:40 +0000)] 
[3.12] GH-121970: Extract `pydoc_topics` into a new extension (GH-131256) (#131512)

(cherry picked from commit c1a02f9101f0b2d9dc7cfb4b8be5193e7459a906)

7 months ago[3.12] Docs: Fix documentation for "PyTypeObject Definition" (GH-130936) (GH-131459)
Miss Islington (bot) [Thu, 20 Mar 2025 12:41:22 +0000 (13:41 +0100)] 
[3.12] Docs: Fix documentation for "PyTypeObject Definition" (GH-130936) (GH-131459)

The structure definition for `PyTypeObject` is in `Include/cpython/object.h`,
not in `Include/object.h`.
(cherry picked from commit a0478c9f0c6d6a75ca35a8dc2c74d3b58877f094)

Co-authored-by: Yuki Kobayashi <drsuaimqjgar@gmail.com>
7 months ago[3.12] gh-131417: Mention asyncio Future and Task in docs for generic classes list...
Miss Islington (bot) [Wed, 19 Mar 2025 09:24:16 +0000 (10:24 +0100)] 
[3.12] gh-131417: Mention asyncio Future and Task in docs for generic classes list (GH-131422) (#131446)

gh-131417: Mention asyncio Future and Task in docs for generic classes list (GH-131422)

Mention asyncio Future and Task in docs for generic classes list
(cherry picked from commit 61b4b2c57c9327273f2e306bafa23cf2c70eac8e)

Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com>
7 months ago[3.12] Docs: fix shell command formatting (GH-131310) (#131444)
Miss Islington (bot) [Wed, 19 Mar 2025 07:52:17 +0000 (08:52 +0100)] 
[3.12] Docs: fix shell command formatting (GH-131310) (#131444)

Docs: fix shell command formatting (GH-131310)

replace "zypper in" with "zypper install" to avoid incorrect highlighting
(cherry picked from commit 267c06d6a8290aa299098b4fcd3f270001b01e72)

Co-authored-by: partev <petrosyan@gmail.com>
7 months ago[3.12] gh-121284: Fix email address header folding with parsed encoded-word (GH-12275...
Miss Islington (bot) [Tue, 18 Mar 2025 19:35:32 +0000 (20:35 +0100)] 
[3.12] gh-121284: Fix email address header folding with parsed encoded-word (GH-122754) (#131404)

gh-121284: Fix email address header folding with parsed encoded-word (GH-122754)

Email generators using email.policy.default may convert an RFC 2047
encoded-word to unencoded form during header refolding. In a structured
header, this could allow 'specials' chars outside a quoted-string,
leading to invalid address headers and enabling spoofing. This change
ensures a parsed encoded-word that contains specials is kept as an
encoded-word while the header is refolded.

[Better fix from @bitdancer.]

---------
(cherry picked from commit 295b53df2aa18deb625a7da41f7e4babfe6ef34b)

Co-authored-by: Mike Edmunds <medmunds@gmail.com>
Co-authored-by: R David Murray <rdmurray@bitdance.com>
Co-authored-by: Petr Viktorin <encukou@gmail.com>
7 months ago[3.12] gh-131277: allow EnvironmentVarGuard to unset more than one environment variab...
Bénédikt Tran [Tue, 18 Mar 2025 12:46:24 +0000 (13:46 +0100)] 
[3.12] gh-131277: allow EnvironmentVarGuard to unset more than one environment variable at once (GH-131280) (#131410)

(cherry picked from commit 3185e3115c918ec189e16cf9f5b51a13a0146556)

---------

Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
7 months ago[3.12] gh-131261: Update libexpat to 2.7.0 (CVE-2024-8176) (GH-131361)
Miss Islington (bot) [Tue, 18 Mar 2025 12:18:10 +0000 (13:18 +0100)] 
[3.12] gh-131261: Update libexpat to 2.7.0 (CVE-2024-8176) (GH-131361)

[3.13] gh-131261: Update libexpat to 2.7.0 (CVE-2024-8176)

(cherry picked from commit bb0268f60dfe903a9bdb8d84104247a9318c6b18)
(cherry picked from commit 6af54d298d5135302037cdda7a1f5535e48cb1b6)

Co-authored-by: Gregory P. Smith <greg@krypto.org>