[Python-checkins] gh-123430: Add dark mode support to pages generated by http.server (#123475)

2024-09-02 Thread hugovk
https://github.com/python/cpython/commit/9684f40b9f51816fd326f1b4957ea5fb5b5922c8 commit: 9684f40b9f51816fd326f1b4957ea5fb5b5922c8 branch: main author: Yorik Hansen committer: hugovk <[email protected]> date: 2024-09-03T09:32:11+03:00 summary: gh-123430: Add dark mode suppor

[Python-checkins] gh-121313: multiprocessing: simplify by increasing the connection buffer size to 64KiB (GH-123559)

2024-09-02 Thread gpshead
https://github.com/python/cpython/commit/13f61bf7f1fb9b9b109b089610e845d98e6dc937 commit: 13f61bf7f1fb9b9b109b089610e845d98e6dc937 branch: main author: Inada Naoki committer: gpshead date: 2024-09-02T20:32:38-07:00 summary: gh-121313: multiprocessing: simplify by increasing the connection buffer

[Python-checkins] Fix typos in warnings, docstrings, comments and text files (#123597)

2024-09-02 Thread vstinner
https://github.com/python/cpython/commit/1f4a49ea53516e7ff177beedc09a1e4439b3be1f commit: 1f4a49ea53516e7ff177beedc09a1e4439b3be1f branch: main author: abstractee <[email protected]> committer: vstinner date: 2024-09-03T02:20:40+02:00 summary: Fix typos in warnings, doc

[Python-checkins] [3.12] gh-123458: Skip SBOM generation if no git repository is detected (GH-123507) (#123615)

2024-09-02 Thread Yhg1s
https://github.com/python/cpython/commit/ff4ad2ea89ed4515340f66657505b6c0deb9a16e commit: ff4ad2ea89ed4515340f66657505b6c0deb9a16e branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: Yhg1s date: 2024-09-03T01:21:40+02:00 summary: [3.12] gh-12345

[Python-checkins] [3.13] gh-123409: fix `IPv6Address.reverse_pointer` for IPv4-mapped addresses (GH-123419) (#123606)

2024-09-02 Thread Yhg1s
https://github.com/python/cpython/commit/7761ddcfed82b89c4a9d5610bf1821912e0e90d1 commit: 7761ddcfed82b89c4a9d5610bf1821912e0e90d1 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: Yhg1s date: 2024-09-03T01:19:46+02:00 summary: [3.13] gh-12340

[Python-checkins] [3.13] gh-123458: Skip SBOM generation if no git repository is detected (GH-123507) (#123616)

2024-09-02 Thread Yhg1s
https://github.com/python/cpython/commit/f8124237e72e259a39ceaea10dd133cdaafad452 commit: f8124237e72e259a39ceaea10dd133cdaafad452 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: Yhg1s date: 2024-09-03T01:15:48+02:00 summary: [3.13] gh-12345

[Python-checkins] gh-107954, PEP 741: Add PyConfig_Get()/Set() functions (#123472)

2024-09-02 Thread vstinner
https://github.com/python/cpython/commit/33b790978d8b817a66a4a117a8c38a857b6103f0 commit: 33b790978d8b817a66a4a117a8c38a857b6103f0 branch: main author: Victor Stinner committer: vstinner date: 2024-09-02T23:25:08+02:00 summary: gh-107954, PEP 741: Add PyConfig_Get()/Set() functions (#123472)

[Python-checkins] gh-123458: Skip SBOM generation if no git repository is detected (#123507)

2024-09-02 Thread hugovk
https://github.com/python/cpython/commit/db42934270c5c23be9f6804cad98dfd8234caf6f commit: db42934270c5c23be9f6804cad98dfd8234caf6f branch: main author: Seth Michael Larson committer: hugovk <[email protected]> date: 2024-09-02T22:35:30+03:00 summary: gh-123458: Skip SBOM gen

[Python-checkins] gh-121404: enforce that codegen doesn't access compiler, and compiler doesn't use codegen macros (#123575)

2024-09-02 Thread iritkatriel
https://github.com/python/cpython/commit/fbb26f067a7a3cd6dc6eed31cce12892cc0fedbb commit: fbb26f067a7a3cd6dc6eed31cce12892cc0fedbb branch: main author: Irit Katriel <[email protected]> committer: iritkatriel <[email protected]> date: 2024-09-02T

[Python-checkins] gh-123091: Use more _Py_IsImmortalLoose() (GH-123602)

2024-09-02 Thread encukou
https://github.com/python/cpython/commit/57c471a6880956338549380fc5fb35c986937901 commit: 57c471a6880956338549380fc5fb35c986937901 branch: main author: Petr Viktorin committer: encukou date: 2024-09-02T18:17:48+02:00 summary: gh-123091: Use more _Py_IsImmortalLoose() (GH-123602) Switch more _Py

[Python-checkins] GH-119518: Stop interning strings in pathlib GH-123356)

2024-09-02 Thread encukou
https://github.com/python/cpython/commit/5002f17794a9f403540305c733698d1e01699490 commit: 5002f17794a9f403540305c733698d1e01699490 branch: main author: Barney Gale committer: encukou date: 2024-09-02T18:14:09+02:00 summary: GH-119518: Stop interning strings in pathlib GH-123356) Remove `sys.int

[Python-checkins] [3.13] Rewrite idlelib/Icons/README.txt (GH-123329) (#123330)

2024-09-02 Thread encukou
https://github.com/python/cpython/commit/59e2a0922b342d976e9db0114b085437cea2ea0f commit: 59e2a0922b342d976e9db0114b085437cea2ea0f branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: encukou date: 2024-09-02T17:56:16+02:00 summary: [3.13] Rewrit

[Python-checkins] [3.13] gh-98442: fix locations of with statement's cleanup instructions (GH-120763) (#120786)

2024-09-02 Thread iritkatriel
https://github.com/python/cpython/commit/80e0326b5380891638f75e0e0502039194336099 commit: 80e0326b5380891638f75e0e0502039194336099 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: iritkatriel <[email protected]> date:

[Python-checkins] [3.12] gh-101525: Skip test_gdb if the binary is relocated by BOLT. (… (#123603)

2024-09-02 Thread corona10
https://github.com/python/cpython/commit/4514998195c7ff9809d13ece89fc60298f6e9b12 commit: 4514998195c7ff9809d13ece89fc60298f6e9b12 branch: 3.12 author: Donghee Na committer: corona10 date: 2024-09-03T00:37:26+09:00 summary: [3.12] gh-101525: Skip test_gdb if the binary is relocated by BOLT. (… (

[Python-checkins] gh-123409: fix `IPv6Address.reverse_pointer` for IPv4-mapped addresses (GH-123419)

2024-09-02 Thread encukou
https://github.com/python/cpython/commit/77a2fb4bf1a1b160d6ce105508288fc77f636943 commit: 77a2fb4bf1a1b160d6ce105508288fc77f636943 branch: main author: Bénédikt Tran <[email protected]> committer: encukou date: 2024-09-02T17:05:05+02:00 summary: gh-123409: fix `IPv6Address

[Python-checkins] [3.13] gh-93691: fix too broad source locations of with-statement instructions (GH-120125) (#123604)

2024-09-02 Thread iritkatriel
https://github.com/python/cpython/commit/494181e44db809204f55eaebc88a255acb09a18f commit: 494181e44db809204f55eaebc88a255acb09a18f branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: iritkatriel <[email protected]> date:

[Python-checkins] [3.12] gh-93691: fix too broad source locations of with-statement instructions (GH-120125) (#123605)

2024-09-02 Thread iritkatriel
https://github.com/python/cpython/commit/22ec9cb823359e8e89b35d0f371bdfdb1b299626 commit: 22ec9cb823359e8e89b35d0f371bdfdb1b299626 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: iritkatriel <[email protected]> date:

[Python-checkins] [3.13] gh-101525: Skip test_gdb if the binary is relocated by BOLT. (gh-118572) (#123601)

2024-09-02 Thread corona10
https://github.com/python/cpython/commit/3b3a1a8e7ebbd824778d16fad457a3fa15a9f7e4 commit: 3b3a1a8e7ebbd824778d16fad457a3fa15a9f7e4 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: corona10 date: 2024-09-02T23:10:52+09:00 summary: [3.13] gh-10

[Python-checkins] [3.12] gh-123517: Remove unnecessary `:meth:` parentheses (gh-123518) (GH-123576)

2024-09-02 Thread encukou
https://github.com/python/cpython/commit/d47d7e112419c273731d89028ac603218fa824aa commit: d47d7e112419c273731d89028ac603218fa824aa branch: 3.12 author: Wei-Hsiang (Matt) Wang committer: encukou date: 2024-09-02T16:02:39+02:00 summary: [3.12] gh-123517: Remove unnecessary `:meth:` parentheses (gh

[Python-checkins] [3.13] gh-123517: Remove unnecessary `:meth:` parentheses (gh-123518) (GH-123577)

2024-09-02 Thread encukou
https://github.com/python/cpython/commit/05dcc8160191dbf760157e2c9675dbbcc5edc674 commit: 05dcc8160191dbf760157e2c9675dbbcc5edc674 branch: 3.13 author: Wei-Hsiang (Matt) Wang committer: encukou date: 2024-09-02T16:00:04+02:00 summary: [3.13] gh-123517: Remove unnecessary `:meth:` parentheses (gh

[Python-checkins] gh-101525: Skip test_gdb if the binary is relocated by BOLT. (gh-118572)

2024-09-02 Thread corona10
https://github.com/python/cpython/commit/f95fc4de115ae03d7aa6dece678240df085cb4f6 commit: f95fc4de115ae03d7aa6dece678240df085cb4f6 branch: main author: Donghee Na committer: corona10 date: 2024-09-02T13:24:53Z summary: gh-101525: Skip test_gdb if the binary is relocated by BOLT. (gh-118572) fil

[Python-checkins] [3.13] gh-123091: Use _Py_IsImmortalLoose() (#123511) (#123600)

2024-09-02 Thread vstinner
https://github.com/python/cpython/commit/10735bff9e097626ea319ac19aab0e16a57729e1 commit: 10735bff9e097626ea319ac19aab0e16a57729e1 branch: 3.13 author: Victor Stinner committer: vstinner date: 2024-09-02T15:23:29+02:00 summary: [3.13] gh-123091: Use _Py_IsImmortalLoose() (#123511) (#123600) gh-

[Python-checkins] gh-123091: Use _Py_IsImmortalLoose() (#123511)

2024-09-02 Thread vstinner
https://github.com/python/cpython/commit/f1a0d96f41db9dfa5d7f0b32e72f6f7301a86f91 commit: f1a0d96f41db9dfa5d7f0b32e72f6f7301a86f91 branch: main author: Victor Stinner committer: vstinner date: 2024-09-02T14:25:19+02:00 summary: gh-123091: Use _Py_IsImmortalLoose() (#123511) Use _Py_IsImmortalLo

[Python-checkins] [3.13] gh-116263: Do not rollover empty files in RotatingFileHandler (GH-122788) (#122814)

2024-09-02 Thread Yhg1s
https://github.com/python/cpython/commit/b76a4a5db7b4f97942b2cd7027f5a59ce7cbb523 commit: b76a4a5db7b4f97942b2cd7027f5a59ce7cbb523 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: Yhg1s date: 2024-09-02T12:07:27Z summary: [3.13] gh-116263: Do

[Python-checkins] gh-118508: Clarify which characters are matched by `\s` (#119155)

2024-09-02 Thread nedbat
https://github.com/python/cpython/commit/22fdb8cf899d2dd29f2ac0bf61309af6809719fb commit: 22fdb8cf899d2dd29f2ac0bf61309af6809719fb branch: main author: Nice Zombies committer: nedbat date: 2024-09-02T07:48:15-04:00 summary: gh-118508: Clarify which characters are matched by `\s` (#119155) Clari

[Python-checkins] [3.12] build(deps): bump hypothesis from 6.108.10 to 6.111.2 in /Tools (GH-123567) (#123592)

2024-09-02 Thread hugovk
https://github.com/python/cpython/commit/514787a984291f32f3d8db1589d2568741861851 commit: 514787a984291f32f3d8db1589d2568741861851 branch: 3.12 author: Hugo van Kemenade <[email protected]> committer: hugovk <[email protected]> date: 2024-09-02T14:38:42+0

[Python-checkins] [3.13] Fixes typo in idlelib/idle_test/example_stub.pyi (GH-122520) (#122738)

2024-09-02 Thread Yhg1s
https://github.com/python/cpython/commit/39061814f20c13c45d190422358ab70e3233cdcc commit: 39061814f20c13c45d190422358ab70e3233cdcc branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: Yhg1s date: 2024-09-02T11:26:55Z summary: [3.13] Fixes typo in

[Python-checkins] [3.13] gh-123570: Add link to `weakref.ref` from `weakref_slot` docs in `dataclasses` (GH-123571) (#123594)

2024-09-02 Thread Yhg1s
https://github.com/python/cpython/commit/ec92c8a01817d469c59c37908e6501262981baac commit: ec92c8a01817d469c59c37908e6501262981baac branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: Yhg1s date: 2024-09-02T13:20:35+02:00 summary: [3.13] gh-12357

[Python-checkins] [3.13] build(deps): bump hypothesis from 6.108.10 to 6.111.2 in /Tools (GH-123567) (#123591)

2024-09-02 Thread Yhg1s
https://github.com/python/cpython/commit/7b453ad74ede0f094c4a0e6177bc04938a7ed9cb commit: 7b453ad74ede0f094c4a0e6177bc04938a7ed9cb branch: 3.13 author: Hugo van Kemenade <[email protected]> committer: Yhg1s date: 2024-09-02T13:20:09+02:00 summary: [3.13] build(deps): bump hy

[Python-checkins] [3.13] gh-121285: Remove backtracking when parsing tarfile headers (GH-121286) (#123542)

2024-09-02 Thread Yhg1s
https://github.com/python/cpython/commit/ed3a49ea734ada357ff4442996fd4ae71d253373 commit: ed3a49ea734ada357ff4442996fd4ae71d253373 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: Yhg1s date: 2024-09-02T13:19:11+02:00 summary: [3.13] gh-12128

[Python-checkins] [3.13] gh-123309: Add more tests for the pickletools module (GH-123355) (#123533)

2024-09-02 Thread Yhg1s
https://github.com/python/cpython/commit/ffb7abe829145387ba5d4a81dde04bd037599f34 commit: ffb7abe829145387ba5d4a81dde04bd037599f34 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: Yhg1s date: 2024-09-02T13:18:44+02:00 summary: [3.13] gh-12330

[Python-checkins] [3.13] gh-108172: do not override OS preferred browser if it is a super-string of a known browser (GH-113011) (#123527)

2024-09-02 Thread Yhg1s
https://github.com/python/cpython/commit/bf0d8bb30197a10867e48814a1b0595d50e02695 commit: bf0d8bb30197a10867e48814a1b0595d50e02695 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: Yhg1s date: 2024-09-02T13:18:27+02:00 summary: [3.13] gh-10817

[Python-checkins] [3.13] gh-120426: Reword the glossary term "immortal" (GH-123191) (#123491)

2024-09-02 Thread Yhg1s
https://github.com/python/cpython/commit/1af74fa652b40d5ce67875ebfefd2f5a1cc28a2f commit: 1af74fa652b40d5ce67875ebfefd2f5a1cc28a2f branch: 3.13 author: Petr Viktorin committer: Yhg1s date: 2024-09-02T13:17:41+02:00 summary: [3.13] gh-120426: Reword the glossary term "immortal" (GH-123191) (#1234

[Python-checkins] [3.13] gh-123431: Harmonize extension code checks in pickle (GH-123434) (#123459)

2024-09-02 Thread Yhg1s
https://github.com/python/cpython/commit/ab29053784c678f003d832bbf9fa4ca7b63db623 commit: ab29053784c678f003d832bbf9fa4ca7b63db623 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: Yhg1s date: 2024-09-02T13:17:16+02:00 summary: [3.13] gh-12343

[Python-checkins] [3.13] Fix typos in docs and what's new (#123451)

2024-09-02 Thread Yhg1s
https://github.com/python/cpython/commit/5c408e333dce102fbe71725a43d7dec5e6798928 commit: 5c408e333dce102fbe71725a43d7dec5e6798928 branch: 3.13 author: Wulian <[email protected]> committer: Yhg1s date: 2024-09-02T13:15:02+02:00 summary: [3.13] Fix typos in docs and what's new (#123451) files: M

[Python-checkins] [3.13] gh-120226: Fix test_sendfile_close_peer_in_the_middle_of_receiving on Linux >= 6.10 (GH-120227) (#123421)

2024-09-02 Thread Yhg1s
https://github.com/python/cpython/commit/14a899f6f0df3b0f3d5331e8f7426ec4bfe91a63 commit: 14a899f6f0df3b0f3d5331e8f7426ec4bfe91a63 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: Yhg1s date: 2024-09-02T13:14:03+02:00 summary: [3.13] gh-12022

[Python-checkins] [3.13] GH-117759: Document incremental GC (GH-123266) (#123395)

2024-09-02 Thread Yhg1s
https://github.com/python/cpython/commit/aca65112fe3e0d2e65a73d98186ac0309a70b65d commit: aca65112fe3e0d2e65a73d98186ac0309a70b65d branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: Yhg1s date: 2024-09-02T13:12:16+02:00 summary: [3.13] GH-11775

[Python-checkins] gh-123562: Improve `SyntaxError` message for `case ... as a.b` (#123563)

2024-09-02 Thread lysnikolaou
https://github.com/python/cpython/commit/23f159ae711d84177e8ce34cd9a6c8a762de64ac commit: 23f159ae711d84177e8ce34cd9a6c8a762de64ac branch: main author: sobolevn committer: lysnikolaou date: 2024-09-02T13:11:44+02:00 summary: gh-123562: Improve `SyntaxError` message for `case ... as a.b` (#123563

[Python-checkins] [3.13] gh-111495: Add tests for PyNumber C API (GH-111996) (#123375)

2024-09-02 Thread Yhg1s
https://github.com/python/cpython/commit/cbcb9e1c0fa332eeab39d51b9abff6e5f00339c7 commit: cbcb9e1c0fa332eeab39d51b9abff6e5f00339c7 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: Yhg1s date: 2024-09-02T13:11:06+02:00 summary: [3.13] gh-11149

[Python-checkins] [3.13] GH-122298: Restore printing of GC stats (GH-123261) (#123268)

2024-09-02 Thread Yhg1s
https://github.com/python/cpython/commit/b1372e2f1afe6bd89ffaebe7383418acd8171408 commit: b1372e2f1afe6bd89ffaebe7383418acd8171408 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: Yhg1s date: 2024-09-02T13:10:27+02:00 summary: [3.13] GH-12229

[Python-checkins] [3.13] gh-123213: Fixed xml.etree.ElementTree.Element.extend and assignment to no longer hide exceptions (GH-123214) (#123257)

2024-09-02 Thread Yhg1s
https://github.com/python/cpython/commit/d9e4c4b61c77fb96ba907871bc644342d97defa1 commit: d9e4c4b61c77fb96ba907871bc644342d97defa1 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: Yhg1s date: 2024-09-02T13:10:09+02:00 summary: [3.13] gh-12321

[Python-checkins] [3.13] gh-85110: Preserve relative path in URL without netloc in urllib.parse.urlunsplit() (GH-123179) (#123187)

2024-09-02 Thread Yhg1s
https://github.com/python/cpython/commit/4ea9c5ba782c79737a1801ed2bd2296b19df1be6 commit: 4ea9c5ba782c79737a1801ed2bd2296b19df1be6 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: Yhg1s date: 2024-09-02T13:09:17+02:00 summary: [3.13] gh-85110

[Python-checkins] [3.13] gh-122981: Fix inspect.getsource() for generated classes with Python base classes (GH-123001) (#123182)

2024-09-02 Thread Yhg1s
https://github.com/python/cpython/commit/2b4c31d87d6fe9ec7cdc88eb6139ce9370666739 commit: 2b4c31d87d6fe9ec7cdc88eb6139ce9370666739 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: Yhg1s date: 2024-09-02T13:07:08+02:00 summary: [3.13] gh-12298

[Python-checkins] [3.13] gh-122688: Fix support of var-positional parameter in Argument Clinic (GH-122689) (#122852)

2024-09-02 Thread Yhg1s
https://github.com/python/cpython/commit/8b6dd92db78cd2c0170e30d9e2fd2851b7f60b13 commit: 8b6dd92db78cd2c0170e30d9e2fd2851b7f60b13 branch: 3.13 author: Serhiy Storchaka committer: Yhg1s date: 2024-09-02T13:03:04+02:00 summary: [3.13] gh-122688: Fix support of var-positional parameter in Argument

[Python-checkins] [3.13] gh-122798: Make tests for warnings in the re module more strict (GH-122799) (#122804)

2024-09-02 Thread Yhg1s
https://github.com/python/cpython/commit/60e4c3f71028d599026ca9d9deb51469f6d34fd8 commit: 60e4c3f71028d599026ca9d9deb51469f6d34fd8 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: Yhg1s date: 2024-09-02T12:59:15+02:00 summary: [3.13] gh-12279

[Python-checkins] [3.13] gh-100256: Skip inaccessible registry keys in the WinAPI mimetype implementation (GH-122047) (#122786)

2024-09-02 Thread Yhg1s
https://github.com/python/cpython/commit/f07039866949919183135297bfb37a75b9da3ddf commit: f07039866949919183135297bfb37a75b9da3ddf branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: Yhg1s date: 2024-09-02T12:58:53+02:00 summary: [3.13] gh-10025

[Python-checkins] [3.13] gh-121151: argparse: Fix wrapping of long usage text of arguments inside a mutually exclusive groups (GH-121159) (#122777)

2024-09-02 Thread Yhg1s
https://github.com/python/cpython/commit/f1a6d2254f691e476541deaea67a3f679a339691 commit: f1a6d2254f691e476541deaea67a3f679a339691 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: Yhg1s date: 2024-09-02T12:55:16+02:00 summary: [3.13] gh-12115

[Python-checkins] [3.13] gh-79846: Make ssl.create_default_context() ignore invalid certificates (GH-91740) (#122768)

2024-09-02 Thread Yhg1s
https://github.com/python/cpython/commit/8c01b3426860acd5252a644e222b1d0d1f4e118f commit: 8c01b3426860acd5252a644e222b1d0d1f4e118f branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: Yhg1s date: 2024-09-02T12:53:59+02:00 summary: [3.13] gh-79846

[Python-checkins] [3.13] gh-122571: Remove duplicate definition of PY_BUILTIN_HASHLIB_HASHES in configure.ac (GH-122572) (#122763)

2024-09-02 Thread Yhg1s
https://github.com/python/cpython/commit/8a4f7082207cf11b26818c3290097856737b0385 commit: 8a4f7082207cf11b26818c3290097856737b0385 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: Yhg1s date: 2024-09-02T12:52:21+02:00 summary: [3.13] gh-12257

[Python-checkins] [3.13] gh-120083: Add IDLE Hovertip foreground color needed for recent macOS (GH-120605) (#122739)

2024-09-02 Thread Yhg1s
https://github.com/python/cpython/commit/29733b084db99a76ef2ffe0664f7f1e0efa47679 commit: 29733b084db99a76ef2ffe0664f7f1e0efa47679 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: Yhg1s date: 2024-09-02T12:50:39+02:00 summary: [3.13] gh-12008

[Python-checkins] [3.13] GH-121970: Fix ``gettext`` for audit events (GH-122651) (#122653)

2024-09-02 Thread Yhg1s
https://github.com/python/cpython/commit/4210a7d02ba6ea02c0baa8737fdcd5086a496618 commit: 4210a7d02ba6ea02c0baa8737fdcd5086a496618 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: Yhg1s date: 2024-09-02T12:48:20+02:00 summary: [3.13] GH-12197

[Python-checkins] [3.13] gh-122527: Fix a crash on deallocation of `PyStructSequence` (GH-122577) (#122625)

2024-09-02 Thread Yhg1s
https://github.com/python/cpython/commit/57ba3b0c6e87264fc42ecf31780ec7c598380347 commit: 57ba3b0c6e87264fc42ecf31780ec7c598380347 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: Yhg1s date: 2024-09-02T12:47:18+02:00 summary: [3.13] gh-12252

[Python-checkins] [3.13] Fix typos in docs, error messages and comments (#122502) (#122606)

2024-09-02 Thread Yhg1s
https://github.com/python/cpython/commit/3455d8560ae7be1f314593b16d20562294f9e50b commit: 3455d8560ae7be1f314593b16d20562294f9e50b branch: 3.13 author: Alex Waygood committer: Yhg1s date: 2024-09-02T12:44:42+02:00 summary: [3.13] Fix typos in docs, error messages and comments (#122502) (#122606)

[Python-checkins] [3.12] gh-123570: Add link to `weakref.ref` from `weakref_slot` docs in `dataclasses` (GH-123571) (#123595)

2024-09-02 Thread sobolevn
https://github.com/python/cpython/commit/ae17f9b0d0249b95b00b904532c051c347bc0947 commit: ae17f9b0d0249b95b00b904532c051c347bc0947 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: sobolevn date: 2024-09-02T07:05:18Z summary: [3.12] gh-123570: