[Python-checkins] [3.13] gh-138432: Improved invalid path checking in zoneinfo.reset_tzpath() (GH-138433) (GH-138778)

2025-09-17 Thread serhiy-storchaka
https://github.com/python/cpython/commit/72b28cad917c5ef3b0d26d81bbe9ed3a151f4ad3 commit: 72b28cad917c5ef3b0d26d81bbe9ed3a151f4ad3 branch: 3.13 author: Serhiy Storchaka committer: serhiy-storchaka date: 2025-09-11T07:35:39Z summary: [3.13] gh-138432: Improved invalid path checking in zoneinfo.re

[Python-checkins] gh-138514: getpass: restrict `echo_char` to a single ASCII character (#138591)

2025-09-17 Thread picnixz
https://github.com/python/cpython/commit/ab6893ab5c04fecf71c94f7d65527df124155df5 commit: ab6893ab5c04fecf71c94f7d65527df124155df5 branch: main author: Benjamin Johnson committer: picnixz <[email protected]> date: 2025-09-16T16:21:55+02:00 summary: gh-138514: getpass: rest

[Python-checkins] Remove unnecessary slice in heapq.py (gh-139087)

2025-09-17 Thread rhettinger
https://github.com/python/cpython/commit/444ebaf16e5d358d4c32011eb8b6ca14858719a0 commit: 444ebaf16e5d358d4c32011eb8b6ca14858719a0 branch: main author: Oleksandr Kravets <[email protected]> committer: rhettinger date: 2025-09-18T00:52:46-05:00 summary: Remove unnecessary

[Python-checkins] [3.13] gh-134163: Fix an infinite loop when the process runs out of memory in a `try` block (GH-138491)

2025-09-17 Thread ZeroIntensity
https://github.com/python/cpython/commit/afec6a546049b80fdbaf18baa3a4d2cbc535ce58 commit: afec6a546049b80fdbaf18baa3a4d2cbc535ce58 branch: 3.13 author: yihong committer: ZeroIntensity date: 2025-09-10T12:54:42-04:00 summary: [3.13] gh-134163: Fix an infinite loop when the process runs out of mem

[Python-checkins] [3.13] gh-138005: Document that CSV `skipinitialspace=True` and `delimiter=' '` require quotation for empty fields (GH-138006) (#138799)

2025-09-17 Thread hugovk
https://github.com/python/cpython/commit/a5f7e02ddf59518eadea1325db7e33217341b59b commit: a5f7e02ddf59518eadea1325db7e33217341b59b branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2025-09-1

[Python-checkins] gh-138970: Add general metadata system to the peg generator (#138971)

2025-09-17 Thread pablogsal
https://github.com/python/cpython/commit/0ce9fb7e3b192aefdb55e86f3e4c0e504445812d commit: 0ce9fb7e3b192aefdb55e86f3e4c0e504445812d branch: main author: Pablo Galindo Salgado committer: pablogsal date: 2025-09-18T02:17:04+01:00 summary: gh-138970: Add general metadata system to the peg generator

[Python-checkins] [3.14] GH-139067: Add example for `argparse`'s `append` action (GH-131389) (#139068)

2025-09-17 Thread hugovk
https://github.com/python/cpython/commit/a20395b899163b4d337107b2c4ca1f3cef467462 commit: a20395b899163b4d337107b2c4ca1f3cef467462 branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2025-09-1

[Python-checkins] [3.14] gh-87281: Improve documentation for locale.setlocale() and locale.getlocale() (GH-137313) (#137722)

2025-09-17 Thread hugovk
https://github.com/python/cpython/commit/374b242efa41789309544c3a99e00f0d0e6a63b1 commit: 374b242efa41789309544c3a99e00f0d0e6a63b1 branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2025-09-1

[Python-checkins] gh-139074: Fix missing high precision case in sumprod() (gh-139075)

2025-09-17 Thread rhettinger
https://github.com/python/cpython/commit/b485e50fde3be08d796a2dac66cb822da1226bb3 commit: b485e50fde3be08d796a2dac66cb822da1226bb3 branch: main author: Raymond Hettinger committer: rhettinger date: 2025-09-17T16:50:15-05:00 summary: gh-139074: Fix missing high precision case in sumprod() (gh-139

[Python-checkins] gh-138813: Fix mutable default kwargs={} in multiprocessing BaseProcess and DummyProcess to use None (GH-138814)

2025-09-17 Thread gpshead
https://github.com/python/cpython/commit/5a15e7378996358848394930343e9633b6fec8a9 commit: 5a15e7378996358848394930343e9633b6fec8a9 branch: main author: Denis Sergeev committer: gpshead <[email protected]> date: 2025-09-17T14:45:52-07:00 summary: gh-138813: Fix mutable default

[Python-checkins] gh-99948: Support ctypes.util.find_library in emscripten environment (#138519)

2025-09-17 Thread freakboy3742
https://github.com/python/cpython/commit/218b8dbc789fe709c45d3f3423142577bae3e6a5 commit: 218b8dbc789fe709c45d3f3423142577bae3e6a5 branch: main author: Gyeongjae Choi committer: freakboy3742 date: 2025-09-17T10:17:56Z summary: gh-99948: Support ctypes.util.find_library in emscripten environment

[Python-checkins] [3.13] gh-71810: Fix _PyLong_AsByteArray() undefined behavior (GH-138873) (#138884)

2025-09-17 Thread vstinner
https://github.com/python/cpython/commit/a9020589de6321310720ca550f48793ab5b42d93 commit: a9020589de6321310720ca550f48793ab5b42d93 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: vstinner date: 2025-09-14T09:49:23Z summary: [3.13] gh-71810:

[Python-checkins] GH-138355: Remove trash_delete_later from _gc_runtime_state (#138767)

2025-09-17 Thread vstinner
https://github.com/python/cpython/commit/b42af37ceddd05ffba6f561b1b534e93a4ad2505 commit: b42af37ceddd05ffba6f561b1b534e93a4ad2505 branch: main author: Sergey Miryanov committer: vstinner date: 2025-09-17T21:25:24+01:00 summary: GH-138355: Remove trash_delete_later from _gc_runtime_state (#13876

[Python-checkins] [3.14] gh-138081: Fix/remove incorrect links in `idlelib/HISTORY.txt` (GH-138091) (#138124)

2025-09-17 Thread hugovk
https://github.com/python/cpython/commit/09b7e87646da1500c43e90a65e9b1f545d14ec84 commit: 09b7e87646da1500c43e90a65e9b1f545d14ec84 branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2025-09-1

[Python-checkins] gh-133879: Improve consistency of full stops and whitespace in What's New (#138635)

2025-09-17 Thread AA-Turner
https://github.com/python/cpython/commit/49b351e83281b76abb3258a6cc66c230707801ce commit: 49b351e83281b76abb3258a6cc66c230707801ce branch: main author: Bénédikt Tran <[email protected]> committer: AA-Turner <[email protected]> date: 2025-09-08T20:12:

[Python-checkins] gh-138008: Fix segfaults in _ctypes due to invalid argtypes (GH-138285)

2025-09-17 Thread encukou
https://github.com/python/cpython/commit/1ce05537a3ebaf1e5c54505b2272d61bb6cf5de0 commit: 1ce05537a3ebaf1e5c54505b2272d61bb6cf5de0 branch: main author: Dung Nguyen committer: encukou date: 2025-09-10T14:01:19+02:00 summary: gh-138008: Fix segfaults in _ctypes due to invalid argtypes (GH-138285)

[Python-checkins] [3.13] gh-135329: prevent infinite traceback loop on Ctrl-C for strace (#138974)

2025-09-17 Thread ambv
https://github.com/python/cpython/commit/35ba6d4035ecea3c126f12c8aafd26b989102448 commit: 35ba6d4035ecea3c126f12c8aafd26b989102448 branch: 3.13 author: Łukasz Langa committer: ambv date: 2025-09-16T15:17:36+02:00 summary: [3.13] gh-135329: prevent infinite traceback loop on Ctrl-C for strace (#1

[Python-checkins] gh-134466: Don't run when termios is inaccessible (GH-138911)

2025-09-17 Thread ambv
https://github.com/python/cpython/commit/2fc7004d5437e7bb0a1f5b962be441ef0ee7434b commit: 2fc7004d5437e7bb0a1f5b962be441ef0ee7434b branch: main author: Łukasz Langa committer: ambv date: 2025-09-17T12:59:49+02:00 summary: gh-134466: Don't run when termios is inaccessible (GH-138911) Without the

[Python-checkins] [3.14] Docs: Use the correct example module in warnings.rst (GH-137402) (#137492)

2025-09-17 Thread hugovk
https://github.com/python/cpython/commit/2bea4f099519696345974ffa9f0f939d855d594d commit: 2bea4f099519696345974ffa9f0f939d855d594d branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2025-09-1

[Python-checkins] gh-138714: Don't assume next block has instructions when propagating line numbers (#138770)

2025-09-17 Thread DinoV
https://github.com/python/cpython/commit/e92599e677de8195898e686b61e930baa3b8f627 commit: e92599e677de8195898e686b61e930baa3b8f627 branch: main author: Dino Viehland committer: DinoV date: 2025-09-17T09:52:56-07:00 summary: gh-138714: Don't assume next block has instructions when propagating lin

[Python-checkins] [3.14] gh-138896: Fix error installing C runtime on non-updated Windows machines (GH-138932) (#139034)

2025-09-17 Thread hugovk
https://github.com/python/cpython/commit/c1154943b12435331450cc50a2e24c3a2827f742 commit: c1154943b12435331450cc50a2e24c3a2827f742 branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2025-09-1

[Python-checkins] gh-137838: Move _PyUOpInstruction buffer to PyInterpreterState (gh-138918)

2025-09-17 Thread corona10
https://github.com/python/cpython/commit/d873fb42f3535165f815c3c8e67d373a8d4cdfc5 commit: d873fb42f3535165f815c3c8e67d373a8d4cdfc5 branch: main author: Donghee Na committer: corona10 date: 2025-09-17T18:50:16+01:00 summary: gh-137838: Move _PyUOpInstruction buffer to PyInterpreterState (gh-13891

[Python-checkins] gh-86819: Add ISO-TP CAN socket constants (#23794)

2025-09-17 Thread erlend-aasland
https://github.com/python/cpython/commit/a9b6b091411a4b54421b2f81edad9778d374e3f8 commit: a9b6b091411a4b54421b2f81edad9778d374e3f8 branch: main author: Stefan Tatschner committer: erlend-aasland date: 2025-09-17T17:18:04Z summary: gh-86819: Add ISO-TP CAN socket constants (#23794) Co-authored-b

[Python-checkins] GH-92266: Remove embedded tabs from ``c-analyzer/cpython/_parser.py`` (#137622)

2025-09-17 Thread AA-Turner
https://github.com/python/cpython/commit/2212ae5557d4ad9dfc792f728d2bf2697b063b92 commit: 2212ae5557d4ad9dfc792f728d2bf2697b063b92 branch: main author: Adam Turner <[email protected]> committer: AA-Turner <[email protected]> date: 2025-09-17T15:25:0

[Python-checkins] gh-129813, PEP 782: Set invalid bytes in PyBytesWriter (#139054)

2025-09-17 Thread vstinner
https://github.com/python/cpython/commit/c72ffe71f1f1ba521bd716d83f76242bdf94ea18 commit: c72ffe71f1f1ba521bd716d83f76242bdf94ea18 branch: main author: Victor Stinner committer: vstinner date: 2025-09-17T17:58:32+02:00 summary: gh-129813, PEP 782: Set invalid bytes in PyBytesWriter (#139054) In

[Python-checkins] [3.13] GH-139067: Add example for `argparse`'s `append` action (GH-131389) (#139069)

2025-09-17 Thread savannahostrowski
https://github.com/python/cpython/commit/fa6dbb16419dacb57cb831b1fac5a32fef4f412d commit: fa6dbb16419dacb57cb831b1fac5a32fef4f412d branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: savannahostrowski date: 2025-09-17T17:35:37+01:00 summary: [3.

[Python-checkins] GH-137630: Convert ``_interpqueues`` to use Argument Clinic (#137685)

2025-09-17 Thread AA-Turner
https://github.com/python/cpython/commit/4b78fe96656472b192ad883b433755d47e76a286 commit: 4b78fe96656472b192ad883b433755d47e76a286 branch: main author: Adam Turner <[email protected]> committer: AA-Turner <[email protected]> date: 2025-09-17T17:35:0

[Python-checkins] [3.14] gh-139006: Doc: Clarify html.escape function description (GH-139016) (#139036)

2025-09-17 Thread ezio-melotti
https://github.com/python/cpython/commit/ce48f4c845d820391e04c0b228dd3c632af0206b commit: ce48f4c845d820391e04c0b228dd3c632af0206b branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: ezio-melotti date: 2025-09-17T21:58:17+08:00 summary: [3.14] g

[Python-checkins] [3.13] gh-134466: Don't run when termios is inaccessible (GH-138911) (GH-139030)

2025-09-17 Thread ambv
https://github.com/python/cpython/commit/3db6d82a4d589a758a119e1de5118ad2e4c9588c commit: 3db6d82a4d589a758a119e1de5118ad2e4c9588c branch: 3.13 author: Łukasz Langa committer: ambv date: 2025-09-17T18:25:40+02:00 summary: [3.13] gh-134466: Don't run when termios is inaccessible (GH-138911) (GH-1

[Python-checkins] [3.13] gh-138736: Fix sqlite3.Connection.blobopen 'row' parameter type and naming (#138738) (#139063)

2025-09-17 Thread erlend-aasland
https://github.com/python/cpython/commit/5f84c1d192405e437d680d400146e78bcbaf6dbb commit: 5f84c1d192405e437d680d400146e78bcbaf6dbb branch: 3.13 author: Erlend E. Aasland committer: erlend-aasland date: 2025-09-17T16:26:10Z summary: [3.13] gh-138736: Fix sqlite3.Connection.blobopen 'row' paramete

[Python-checkins] gh-139006: Doc: Clarify html.escape function description (#139016)

2025-09-17 Thread ezio-melotti
https://github.com/python/cpython/commit/81c975bcfc1ac0533f9489a37e501ad5d3bdb4eb commit: 81c975bcfc1ac0533f9489a37e501ad5d3bdb4eb branch: main author: PrinceNaroliya committer: ezio-melotti date: 2025-09-17T21:45:34+08:00 summary: gh-139006: Doc: Clarify html.escape function description (#13901

[Python-checkins] GH-139067: Add example for `argparse`'s `append` action (#131389)

2025-09-17 Thread savannahostrowski
https://github.com/python/cpython/commit/101fd33065638c94f413447a7bcff09d54831a4a commit: 101fd33065638c94f413447a7bcff09d54831a4a branch: main author: Moshe Kaplan committer: savannahostrowski date: 2025-09-17T17:24:20+01:00 summary: GH-139067: Add example for `argparse`'s `append` action (#131

[Python-checkins] [3.13] gh-139006: Doc: Clarify html.escape function description (GH-139016) (#139037)

2025-09-17 Thread ezio-melotti
https://github.com/python/cpython/commit/c707d38e708d53f945fb1b4b345954396f2e0a88 commit: c707d38e708d53f945fb1b4b345954396f2e0a88 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: ezio-melotti date: 2025-09-17T21:54:16+08:00 summary: [3.13] g

[Python-checkins] [3.14] gh-128627: Use __builtin_wasm_test_function_pointer_signature for Emscripten trampoline (GH-137470) (#139039)

2025-09-17 Thread hugovk
https://github.com/python/cpython/commit/0e4e608f0381c8ae1e645d9caf938b8f090a680c commit: 0e4e608f0381c8ae1e645d9caf938b8f090a680c branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2025-09-1

[Python-checkins] [3.14] gh-132558: Improve `argparse` docs on combining `type` and `choices` (GH-133827) (#139057)

2025-09-17 Thread hugovk
https://github.com/python/cpython/commit/7a2854eb12368b0eeea5460b06c39ed3e59e5ea7 commit: 7a2854eb12368b0eeea5460b06c39ed3e59e5ea7 branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2025-09-1

[Python-checkins] [3.13] gh-132558: Improve `argparse` docs on combining `type` and `choices` (GH-133827) (#139058)

2025-09-17 Thread savannahostrowski
https://github.com/python/cpython/commit/216f655c80ee4dad95aea3ce5c298e8d7f80051c commit: 216f655c80ee4dad95aea3ce5c298e8d7f80051c branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: savannahostrowski date: 2025-09-17T17:10:04+01:00 summary: [3.

[Python-checkins] [3.13] gh-129368: In PyRun C API docs, clarify what a "start token" is (GH-129935) (#139043)

2025-09-17 Thread erlend-aasland
https://github.com/python/cpython/commit/8ef549069c56b6c1b44ef219df665a6e3411bf31 commit: 8ef549069c56b6c1b44ef219df665a6e3411bf31 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: erlend-aasland date: 2025-09-17T17:05:29+01:00 summary: [3.13]

[Python-checkins] gh-129368: In PyRun C API docs, clarify what a "start token" is (#129935)

2025-09-17 Thread erlend-aasland
https://github.com/python/cpython/commit/e1eca8b308a585af45e9ebf4f605c9f67b7115d8 commit: e1eca8b308a585af45e9ebf4f605c9f67b7115d8 branch: main author: Rajhans Jadhao committer: erlend-aasland date: 2025-09-17T14:51:20Z summary: gh-129368: In PyRun C API docs, clarify what a "start token" is (#1

[Python-checkins] gh-129813, PEP 782: Use PyBytesWriter in _testclinic (#139048)

2025-09-17 Thread vstinner
https://github.com/python/cpython/commit/82e1920a014cbe38bbadce8544b92e6894bc679b commit: 82e1920a014cbe38bbadce8544b92e6894bc679b branch: main author: Victor Stinner committer: vstinner date: 2025-09-17T17:55:30+02:00 summary: gh-129813, PEP 782: Use PyBytesWriter in _testclinic (#139048) Repl

[Python-checkins] [3.13] gh-135629: rewrite language reference section on except* to improve clarity (GH-136150) (#139060)

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

[Python-checkins] [3.13] gh-137988: Fix const description in argparse.add_argument() docs (GH-138315) (#139052)

2025-09-17 Thread savannahostrowski
https://github.com/python/cpython/commit/2806469667b3a38f265a22e67d7adcde2dc4f846 commit: 2806469667b3a38f265a22e67d7adcde2dc4f846 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: savannahostrowski date: 2025-09-17T16:54:23+01:00 summary: [3.

[Python-checkins] [3.14] gh-137988: Fix const description in argparse.add_argument() docs (GH-138315) (#139051)

2025-09-17 Thread hugovk
https://github.com/python/cpython/commit/9d0ca237af669ffde8c97b628c16b51792b5a3b6 commit: 9d0ca237af669ffde8c97b628c16b51792b5a3b6 branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2025-09-1

[Python-checkins] gh-138736: Fix sqlite3.Connection.blobopen 'row' parameter type and naming (#138738)

2025-09-17 Thread erlend-aasland
https://github.com/python/cpython/commit/8eb106240f5d70baeabd4ad137de6213dd8cfb30 commit: 8eb106240f5d70baeabd4ad137de6213dd8cfb30 branch: main author: chiri committer: erlend-aasland date: 2025-09-17T15:51:14Z summary: gh-138736: Fix sqlite3.Connection.blobopen 'row' parameter type and naming

[Python-checkins] gh-138896: Fix error installing C runtime on non-updated Windows machines (GH-138932)

2025-09-17 Thread zooba
https://github.com/python/cpython/commit/9a85f9d5ddc2053238fa6d806b4782c8e27e35e5 commit: 9a85f9d5ddc2053238fa6d806b4782c8e27e35e5 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: zooba date: 2025-09-17T13:54:59Z summary: gh-138896: Fix error

[Python-checkins] gh-128627: Use __builtin_wasm_test_function_pointer_signature for Emscripten trampoline (#137470)

2025-09-17 Thread freakboy3742
https://github.com/python/cpython/commit/2629ee4eb0e9f66f28772cb4b4cc44ebe6de79ad commit: 2629ee4eb0e9f66f28772cb4b4cc44ebe6de79ad branch: main author: Hood Chatham committer: freakboy3742 date: 2025-09-17T15:33:55+01:00 summary: gh-128627: Use __builtin_wasm_test_function_pointer_signature for

[Python-checkins] gh-138952: Document platform.machine() output casing inconsistency across platforms (#138962)

2025-09-17 Thread ned-deily
https://github.com/python/cpython/commit/dd15a2e11ea5d16ad42050a2723dec0e400ea394 commit: dd15a2e11ea5d16ad42050a2723dec0e400ea394 branch: main author: Aniket <[email protected]> committer: ned-deily date: 2025-09-17T15:56:21+01:00 summary: gh-138952: Document platform.

[Python-checkins] gh-129813, PEP 782: Use PyBytesWriter in _multiprocessing (#139047)

2025-09-17 Thread vstinner
https://github.com/python/cpython/commit/77a22ef76aee9a5782d31c118dba27d29fe5a84a commit: 77a22ef76aee9a5782d31c118dba27d29fe5a84a branch: main author: Victor Stinner committer: vstinner date: 2025-09-17T17:44:13+02:00 summary: gh-129813, PEP 782: Use PyBytesWriter in _multiprocessing (#139047)

[Python-checkins] gh-129813, PEP 782: Use PyBytesWriter in _Py_bytes_maketrans() (#139044)

2025-09-17 Thread vstinner
https://github.com/python/cpython/commit/263242613f1d81214dd0334b159f35854e72986a commit: 263242613f1d81214dd0334b159f35854e72986a branch: main author: Victor Stinner committer: vstinner date: 2025-09-17T17:43:30+02:00 summary: gh-129813, PEP 782: Use PyBytesWriter in _Py_bytes_maketrans() (#139

[Python-checkins] gh-132558: Improve `argparse` docs on combining `type` and `choices` (#133827)

2025-09-17 Thread savannahostrowski
https://github.com/python/cpython/commit/dd0840bf67e194ab64f340b8a7fbda24cb25e177 commit: dd0840bf67e194ab64f340b8a7fbda24cb25e177 branch: main author: Hans Then committer: savannahostrowski date: 2025-09-17T15:25:17Z summary: gh-132558: Improve `argparse` docs on combining `type` and `choices`

[Python-checkins] gh-128639: Don't assume one thread in subinterpreter finalization with fixed daemon thread support (GH-134606)

2025-09-17 Thread ZeroIntensity
https://github.com/python/cpython/commit/a64881363b836b95fb4512a5689d69c1aa07ecb8 commit: a64881363b836b95fb4512a5689d69c1aa07ecb8 branch: main author: Peter Bierma committer: ZeroIntensity date: 2025-09-17T11:14:19-04:00 summary: gh-128639: Don't assume one thread in subinterpreter finalization

[Python-checkins] Add pganssle to CODEOWNERS for ``zoneinfo`` (#139032)

2025-09-17 Thread AA-Turner
https://github.com/python/cpython/commit/5560ab674bff46aa529b9bb0a0f7c6c1077201c5 commit: 5560ab674bff46aa529b9bb0a0f7c6c1077201c5 branch: main author: Paul Ganssle <[email protected]> committer: AA-Turner <[email protected]> date: 2025-09-17T16:17:2

[Python-checkins] gh-137988: Fix const description in argparse.add_argument() docs (#138315)

2025-09-17 Thread savannahostrowski
https://github.com/python/cpython/commit/37425fe9fb776f2bd3c8ec13cf7f16e04a71ea93 commit: 37425fe9fb776f2bd3c8ec13cf7f16e04a71ea93 branch: main author: PrinceNaroliya committer: savannahostrowski date: 2025-09-17T15:15:57Z summary: gh-137988: Fix const description in argparse.add_argument() docs

[Python-checkins] [3.13] gh-138952: Document platform.machine() output casing inconsistency across platforms (GH-138962) (#139046)

2025-09-17 Thread ned-deily
https://github.com/python/cpython/commit/13761d17b125f36a0e9f1d48570f17ac03cf5f86 commit: 13761d17b125f36a0e9f1d48570f17ac03cf5f86 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: ned-deily date: 2025-09-17T15:05:56Z summary: [3.13] gh-138952

[Python-checkins] gh-131776: Expose functions called from the interpreter loop via PyAPI_FUNC (#134242)

2025-09-17 Thread DinoV
https://github.com/python/cpython/commit/299de38e61e09e8821f3245a833e5e4c1b6e5aa8 commit: 299de38e61e09e8821f3245a833e5e4c1b6e5aa8 branch: main author: Dino Viehland committer: DinoV date: 2025-09-17T08:04:02-07:00 summary: gh-131776: Expose functions called from the interpreter loop via PyAPI_F

[Python-checkins] gh-76760: test that `uuid.uuid1()` sets the version field (#139033)

2025-09-17 Thread picnixz
https://github.com/python/cpython/commit/3a04be986a1adac4fb8d8780b959f60e51c15b8f commit: 3a04be986a1adac4fb8d8780b959f60e51c15b8f branch: main author: Bénédikt Tran <[email protected]> committer: picnixz <[email protected]> date: 2025-09-17T13:31:51Z

[Python-checkins] [3.14] gh-99948: Support ctypes.util.find_library in emscripten environment (GH-138519) (#139022)

2025-09-17 Thread hugovk
https://github.com/python/cpython/commit/9741cfc73afcf780a84ce018f9e71903211a5fd8 commit: 9741cfc73afcf780a84ce018f9e71903211a5fd8 branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2025-09-1

[Python-checkins] [3.14] GH-123299: Copyedit 3.14 What's New: C API (GH-138987) (#139021)

2025-09-17 Thread hugovk
https://github.com/python/cpython/commit/f8ee2d404db9a382c35c0762199c0721ef0c0c9b commit: f8ee2d404db9a382c35c0762199c0721ef0c0c9b branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2025-09-1

[Python-checkins] [3.14] gh-138514: getpass: restrict `echo_char` to a single ASCII character (GH-138591) (#138988)

2025-09-17 Thread hugovk
https://github.com/python/cpython/commit/37f8a63e39ac85c51032de19d2b6d81be162 commit: 37f8a63e39ac85c51032de19d2b6d81be162 branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2025-09-1

[Python-checkins] gh-138896: Fix error installing C runtime on non-updated Windows machines (GH-138932)

2025-09-17 Thread zooba
https://github.com/python/cpython/commit/76b22978bcca4a9607523ba36b9c04ec3ba119bd commit: 76b22978bcca4a9607523ba36b9c04ec3ba119bd branch: main author: adang1345 committer: zooba date: 2025-09-17T14:32:52+01:00 summary: gh-138896: Fix error installing C runtime on non-updated Windows machines (

[Python-checkins] [3.13] Synced docs and docstring for `sysconfig.get_platform` (GH-135530) (#138975)

2025-09-17 Thread ned-deily
https://github.com/python/cpython/commit/b0aa4f252e2fcdc0c78976080a94db33acf12b56 commit: b0aa4f252e2fcdc0c78976080a94db33acf12b56 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: ned-deily date: 2025-09-17T13:22:36Z summary: [3.13] Synced do

[Python-checkins] GH-123299: Copyedit 3.14 What's New: C API (#138987)

2025-09-17 Thread AA-Turner
https://github.com/python/cpython/commit/69a5ea53403763ef87bb33f7d9b819bdee2883be commit: 69a5ea53403763ef87bb33f7d9b819bdee2883be branch: main author: Adam Turner <[email protected]> committer: AA-Turner <[email protected]> date: 2025-09-17T11:14:5

[Python-checkins] [3.14] gh-137226: Fix get_type_hints() on generic TypedDict with stringified annotations (GH-138953) (#138989)

2025-09-17 Thread hugovk
https://github.com/python/cpython/commit/6038447d99663b0434a4f2c545c0543e9a81fdc3 commit: 6038447d99663b0434a4f2c545c0543e9a81fdc3 branch: 3.14 author: Jelle Zijlstra committer: hugovk <[email protected]> date: 2025-09-17T12:22:16+03:00 summary: [3.14] gh-137226: Fix get_typ

[Python-checkins] [3.14] gh-138966: Add description for `gi_suspended` attribute (GH-139008) (#139020)

2025-09-17 Thread hugovk
https://github.com/python/cpython/commit/82fce8271c4f34514db6d31559e483d5fe47a0bb commit: 82fce8271c4f34514db6d31559e483d5fe47a0bb branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2025-09-1

[Python-checkins] [3.13] gh-138966: Add description for `gi_suspended` attribute (GH-139008) (GH-139019)

2025-09-17 Thread ZeroIntensity
https://github.com/python/cpython/commit/b6d8ec39bd548b9e499597ac23925666c3005879 commit: b6d8ec39bd548b9e499597ac23925666c3005879 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: ZeroIntensity date: 2025-09-17T04:42:13-04:00 summary: [3.13]

[Python-checkins] gh-138966: Add description for `gi_suspended` attribute (GH-139008)

2025-09-17 Thread ZeroIntensity
https://github.com/python/cpython/commit/c025576a8f0822ec42527e80eb7a02700316d100 commit: c025576a8f0822ec42527e80eb7a02700316d100 branch: main author: Donghoon Nam <[email protected]> committer: ZeroIntensity date: 2025-09-17T04:21:52-04:00 summary: gh-138966: Add des

[Python-checkins] gh-71679: Share the repr implementation between bytes and bytearray (GH-138181)

2025-09-17 Thread serhiy-storchaka
https://github.com/python/cpython/commit/a1cf6e92b64062c5a2c15ab4e12d7586d0e2b5fd commit: a1cf6e92b64062c5a2c15ab4e12d7586d0e2b5fd branch: main author: Serhiy Storchaka committer: serhiy-storchaka date: 2025-09-17T11:10:29+03:00 summary: gh-71679: Share the repr implementation between bytes and

[Python-checkins] [3.14] Revert "gh-118803: Remove `ByteString` from `typing` and `collections.abc` (GH-118804)" (GH-138990) (#138995)

2025-09-17 Thread hugovk
https://github.com/python/cpython/commit/7bba99c6113d4054fbd625bba9a9052575bdf717 commit: 7bba99c6113d4054fbd625bba9a9052575bdf717 branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2025-09-1