[Python-checkins] [3.14] gh-98896: resource_tracker: use json&base64 to allow arbitrary shared memory names (GH-138473) (GH-141922)

2025-11-27 Thread encukou
https://github.com/python/cpython/commit/64d6bde38ffb97a6f7c7fee82ba98de81911f1b9 commit: 64d6bde38ffb97a6f7c7fee82ba98de81911f1b9 branch: 3.14 author: Stan Ulbrych <[email protected]> committer: encukou date: 2025-11-27T13:17:39+01:00 summary: [3.14] gh

[Python-checkins] gh-135676: Simplify docs on lexing names (GH-140464)

2025-11-26 Thread encukou
https://github.com/python/cpython/commit/2ff8608b4da33f667960e5099a1a442197acaea4 commit: 2ff8608b4da33f667960e5099a1a442197acaea4 branch: main author: Petr Viktorin committer: encukou date: 2025-11-26T16:10:44+01:00 summary: gh-135676: Simplify docs on lexing names (GH-140464) This simplifies

[Python-checkins] [3.13] gh-141909: Add `PyModuleDef_Slot` and earlier Py_mod_* constants to stable ABI manifest (#141910) (GH-141977)

2025-11-26 Thread encukou
https://github.com/python/cpython/commit/9756d8c63737042db611205b0c33c353d5dbd9c3 commit: 9756d8c63737042db611205b0c33c353d5dbd9c3 branch: 3.13 author: Petr Viktorin committer: encukou date: 2025-11-26T15:34:57+01:00 summary: [3.13] gh-141909: Add `PyModuleDef_Slot` and earlier Py_mod_

[Python-checkins] [3.14] gh-141909: Add `PyModuleDef_Slot` and earlier Py_mod_* constants to stable ABI manifest (#141910) (GH-141978)

2025-11-26 Thread encukou
https://github.com/python/cpython/commit/96bc021d7c93587a98b13a8bd191e5c9e31a6baf commit: 96bc021d7c93587a98b13a8bd191e5c9e31a6baf branch: 3.14 author: Petr Viktorin committer: encukou date: 2025-11-26T15:35:04+01:00 summary: [3.14] gh-141909: Add `PyModuleDef_Slot` and earlier Py_mod_

[Python-checkins] gh-140011: Delete importdl assertion that prevents importing embedded modules from packages (GH-141605)

2025-11-26 Thread encukou
https://github.com/python/cpython/commit/27f62eb711720c215f9798ae30728ee5a1b4d442 commit: 27f62eb711720c215f9798ae30728ee5a1b4d442 branch: main author: Itamar Oren committer: encukou date: 2025-11-26T14:12:49+01:00 summary: gh-140011: Delete importdl assertion that prevents importing embedded

[Python-checkins] gh-140550: PEP 793 reference documentation (GH-141197)

2025-11-26 Thread encukou
https://github.com/python/cpython/commit/d7f0214f133442f8f5d4d64044a370e94a5906e8 commit: d7f0214f133442f8f5d4d64044a370e94a5906e8 branch: main author: Petr Viktorin committer: encukou date: 2025-11-26T12:50:03Z summary: gh-140550: PEP 793 reference documentation (GH-141197) * gh-140550: PEP

[Python-checkins] [3.14] GH-139653: Only raise an exception (or fatal error) when the stack pointer is about to overflow the stack. (GH-141711) (GH-141944)

2025-11-26 Thread encukou
https://github.com/python/cpython/commit/69021e9acf74a4a43325241d641b6d09ed55b699 commit: 69021e9acf74a4a43325241d641b6d09ed55b699 branch: 3.14 author: Petr Viktorin committer: encukou date: 2025-11-26T12:54:56+01:00 summary: [3.14] GH-139653: Only raise an exception (or fatal error) when the

[Python-checkins] gh-141909: Add `PyModuleDef_Slot` and earlier Py_mod_* constants to stable ABI manifest (#141910)

2025-11-25 Thread encukou
https://github.com/python/cpython/commit/202fce0dbde1da32d8abc2eb59ddfce6f6a3c9fa commit: 202fce0dbde1da32d8abc2eb59ddfce6f6a3c9fa branch: main author: Petr Viktorin committer: encukou date: 2025-11-25T15:16:49+01:00 summary: gh-141909: Add `PyModuleDef_Slot` and earlier Py_mod_* constants to

[Python-checkins] gh-139165: Make Py_SIZE, Py_IS_TYPE,Py_ SET_SIZE regular functions in stable ABI (GH-139166)

2025-11-25 Thread encukou
https://github.com/python/cpython/commit/226011ba127323dea894ee67e6990f1305efa2d5 commit: 226011ba127323dea894ee67e6990f1305efa2d5 branch: main author: Petr Viktorin committer: encukou date: 2025-11-25T14:30:33+01:00 summary: gh-139165: Make Py_SIZE, Py_IS_TYPE,Py_ SET_SIZE regular functions in

[Python-checkins] gh-141780: Make PyModule_FromSlotsAndSpec enable GIL if needed (GH-141785)

2025-11-24 Thread encukou
https://github.com/python/cpython/commit/bf66bce4ee642e0d14d2e289490360e60980b14e commit: bf66bce4ee642e0d14d2e289490360e60980b14e branch: main author: Petr Viktorin committer: encukou date: 2025-11-24T13:26:35+01:00 summary: gh-141780: Make PyModule_FromSlotsAndSpec enable GIL if needed (GH

[Python-checkins] gh-140042: Removing unsafe call to sqlite3_shutdown (GH-141690)

2025-11-20 Thread encukou
https://github.com/python/cpython/commit/b1558b6d3e2af8964840a5c00356533107368f22 commit: b1558b6d3e2af8964840a5c00356533107368f22 branch: main author: Prithviraj Chaudhuri committer: encukou date: 2025-11-20T15:35:22+01:00 summary: gh-140042: Removing unsafe call to sqlite3_shutdown (GH-141690

[Python-checkins] gh-139871: Optimize small takes in bytearray.take_bytes (GH-141741)

2025-11-19 Thread encukou
https://github.com/python/cpython/commit/e265ce8a563ba7f91c5ada0592de8cb85622b433 commit: e265ce8a563ba7f91c5ada0592de8cb85622b433 branch: main author: Cody Maloney committer: encukou date: 2025-11-20T08:49:05+01:00 summary: gh-139871: Optimize small takes in bytearray.take_bytes (GH-141741

[Python-checkins] gh-135953: Avoid BytesWarning when sampling profiler tests fail (GH-141719)

2025-11-19 Thread encukou
https://github.com/python/cpython/commit/e2178743feab3964a25578b0c0bd3ed1a5ed6f75 commit: e2178743feab3964a25578b0c0bd3ed1a5ed6f75 branch: main author: Petr Viktorin committer: encukou date: 2025-11-19T14:43:42+01:00 summary: gh-135953: Avoid BytesWarning when sampling profiler tests fail (GH

[Python-checkins] [3.14] gh-138189: Link references to type slots (GH-141410) (GH-141718)

2025-11-19 Thread encukou
https://github.com/python/cpython/commit/ff8829892aa2a4a738bc0129294c9ec735daea05 commit: ff8829892aa2a4a738bc0129294c9ec735daea05 branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: encukou date: 2025-11-19T10:30:11+01:00 summary: [3.

[Python-checkins] gh-138189: Link references to type slots (GH-141410)

2025-11-18 Thread encukou
https://github.com/python/cpython/commit/4695ec109d07c9bfd9eb7d91d6285c974a4331a7 commit: 4695ec109d07c9bfd9eb7d91d6285c974a4331a7 branch: main author: Petr Viktorin committer: encukou date: 2025-11-18T16:33:52+01:00 summary: gh-138189: Link references to type slots (GH-141410) Link references

[Python-checkins] [3.13] gh-140691: urllib.request: Close FTP control socket if data socket can't connect (GH-140835) (GH-141657)

2025-11-18 Thread encukou
https://github.com/python/cpython/commit/1bca1b4da463561edd860cae5eb81973e9fdd6ff commit: 1bca1b4da463561edd860cae5eb81973e9fdd6ff branch: 3.13 author: Petr Viktorin committer: encukou date: 2025-11-18T13:34:40+01:00 summary: [3.13] gh-140691: urllib.request: Close FTP control socket if data

[Python-checkins] GH-139914: Handle stack growth direction on HPPA (GH-140028)

2025-11-17 Thread encukou
https://github.com/python/cpython/commit/f6dd9c12a8ba391cbbcc793411ac7dcfa6e01028 commit: f6dd9c12a8ba391cbbcc793411ac7dcfa6e01028 branch: main author: Stefano Rivera committer: encukou date: 2025-11-17T14:41:22+01:00 summary: GH-139914: Handle stack growth direction on HPPA (GH-140028

[Python-checkins] [3.14] gh-140691: urllib.request: Close FTP control socket if data socket can't connect (GH-140835) (GH-141555)

2025-11-14 Thread encukou
https://github.com/python/cpython/commit/959578e5d1a3cbec6a515621649c75101702d64d commit: 959578e5d1a3cbec6a515621649c75101702d64d branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: encukou date: 2025-11-14T17:27:33+01:00 summary: [3.

[Python-checkins] [3.13] gh-139344: Remove pending removal notice for undeprecated importlib.resources API (GH-141507) (GH-141557)

2025-11-14 Thread encukou
https://github.com/python/cpython/commit/9648eed33f5fca0fcb8802fe0be8d35907bc33e3 commit: 9648eed33f5fca0fcb8802fe0be8d35907bc33e3 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: encukou date: 2025-11-14T17:24:37+01:00 summary: [3.

[Python-checkins] [3.14] gh-139344: Remove pending removal notice for undeprecated importlib.resources API (GH-141507) (GH-141558)

2025-11-14 Thread encukou
https://github.com/python/cpython/commit/2f23c882431ce82b9f6558ab454156310b5b9134 commit: 2f23c882431ce82b9f6558ab454156310b5b9134 branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: encukou date: 2025-11-14T16:32:05+01:00 summary: [3.

[Python-checkins] gh-116146: Avoid empty braces in _testembed.c (GH-141556)

2025-11-14 Thread encukou
https://github.com/python/cpython/commit/eab7385858025df9fcb0131f71ec4a46d44e3ae9 commit: eab7385858025df9fcb0131f71ec4a46d44e3ae9 branch: main author: Petr Viktorin committer: encukou date: 2025-11-14T15:05:42Z summary: gh-116146: Avoid empty braces in _testembed.c (GH-141556) files: M

[Python-checkins] gh-139344: Remove pending removal notice for undeprecated importlib.resources API (GH-141507)

2025-11-14 Thread encukou
https://github.com/python/cpython/commit/49e74210cb652d8bd538a4cc887f507396cfc893 commit: 49e74210cb652d8bd538a4cc887f507396cfc893 branch: main author: Petr Viktorin committer: encukou date: 2025-11-14T15:50:03+01:00 summary: gh-139344: Remove pending removal notice for undeprecated

[Python-checkins] gh-141376: Remove exceptions from `make smelly` (GH-141392)

2025-11-14 Thread encukou
https://github.com/python/cpython/commit/5ac0b55ebc792936184f8e08697e60d5b3f8b946 commit: 5ac0b55ebc792936184f8e08697e60d5b3f8b946 branch: main author: Petr Viktorin committer: encukou date: 2025-11-14T11:22:18+01:00 summary: gh-141376: Remove exceptions from `make smelly` (GH-141392) * Don&#

[Python-checkins] gh-131510: Use PyUnstable_Unicode_GET_CACHED_HASH() (GH-141520)

2025-11-14 Thread encukou
https://github.com/python/cpython/commit/3bacae55980561cb99095a20a70c45d6174e056d commit: 3bacae55980561cb99095a20a70c45d6174e056d branch: main author: Victor Stinner committer: encukou date: 2025-11-14T11:13:24+01:00 summary: gh-131510: Use PyUnstable_Unicode_GET_CACHED_HASH() (GH-141520

[Python-checkins] gh-116146: Add C-API to create module from spec and initfunc (GH-139196)

2025-11-14 Thread encukou
https://github.com/python/cpython/commit/1e4e59bb3714ba7c6b6297f1a74e231b056f004c commit: 1e4e59bb3714ba7c6b6297f1a74e231b056f004c branch: main author: Itamar Oren committer: encukou date: 2025-11-14T10:43:25+01:00 summary: gh-116146: Add C-API to create module from spec and initfunc (GH-139196

[Python-checkins] gh-140550: Use a bool for the Py_mod_gil value (GH-141519)

2025-11-14 Thread encukou
https://github.com/python/cpython/commit/a4dd66275b62453bec055d730a8ce7173e519b6d commit: a4dd66275b62453bec055d730a8ce7173e519b6d branch: main author: Petr Viktorin committer: encukou date: 2025-11-14T10:38:49+01:00 summary: gh-140550: Use a bool for the Py_mod_gil value (GH-141519) This

[Python-checkins] gh-139871: Add `bytearray.take_bytes([n])` to efficiently extract `bytes` (GH-140128)

2025-11-13 Thread encukou
https://github.com/python/cpython/commit/732224e1139f7ed4fe0259a2dad900f84910949e commit: 732224e1139f7ed4fe0259a2dad900f84910949e branch: main author: Cody Maloney committer: encukou date: 2025-11-13T13:19:44Z summary: gh-139871: Add `bytearray.take_bytes([n])` to efficiently extract `bytes

[Python-checkins] [3.14] gh-140748: socket_helper.transient_internet: Unwrap UrlError.__cause__ (GH-140749) (GH-141505)

2025-11-13 Thread encukou
https://github.com/python/cpython/commit/55cf97d8dd269c45a65a4ceba082d04f16f0eafd commit: 55cf97d8dd269c45a65a4ceba082d04f16f0eafd branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: encukou date: 2025-11-13T13:58:37+01:00 summary: [3.

[Python-checkins] [3.13] gh-140748: socket_helper.transient_internet: Unwrap UrlError.__cause__ (GH-140749) (GH-141506)

2025-11-13 Thread encukou
https://github.com/python/cpython/commit/f50989f3cbf092d4f05c6c639cca21e9f888c2b4 commit: f50989f3cbf092d4f05c6c639cca21e9f888c2b4 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: encukou date: 2025-11-13T13:58:46+01:00 summary: [3.

[Python-checkins] [3.13] gh-138189: Document type slots, and other constants, as part of Limited API (GH-138190) (GH-141193)

2025-11-13 Thread encukou
https://github.com/python/cpython/commit/6916bfb800f84931fa9647f81090ea1f6e2974ec commit: 6916bfb800f84931fa9647f81090ea1f6e2974ec branch: 3.13 author: Petr Viktorin committer: encukou date: 2025-11-13T13:28:57+01:00 summary: [3.13] gh-138189: Document type slots, and other constants, as part

[Python-checkins] gh-98896: resource_tracker: use json&base64 to allow arbitrary shared memory names (GH-138473)

2025-11-12 Thread encukou
https://github.com/python/cpython/commit/c6f3dd6a506a9bb1808c070e5ef5cf345a3bedc8 commit: c6f3dd6a506a9bb1808c070e5ef5cf345a3bedc8 branch: main author: Rani Pinchuk <[email protected]> committer: encukou date: 2025-11-12T13:35:01+01:00 summary: gh

[Python-checkins] gh-141376: Rename _AsyncioDebug to _Py_AsyncioDebug (GH-141391)

2025-11-12 Thread encukou
https://github.com/python/cpython/commit/909f76dab91f028edd2ae7bd589d3975996de9e1 commit: 909f76dab91f028edd2ae7bd589d3975996de9e1 branch: main author: Petr Viktorin committer: encukou date: 2025-11-12T09:42:56+01:00 summary: gh-141376: Rename _AsyncioDebug to _Py_AsyncioDebug (GH-141391

[Python-checkins] gh-141169: Re-raise exception from findfuncptr (GH-141349)

2025-11-11 Thread encukou
https://github.com/python/cpython/commit/799326b0a93ae6375f153d5a6607e7dc5e0690b2 commit: 799326b0a93ae6375f153d5a6607e7dc5e0690b2 branch: main author: Petr Viktorin committer: encukou date: 2025-11-11T13:52:13+01:00 summary: gh-141169: Re-raise exception from findfuncptr (GH-141349) files: M

[Python-checkins] gh-141376: Fix exported symbols (GH-141377)

2025-11-11 Thread encukou
https://github.com/python/cpython/commit/8435a2278f964f48d36edbc5092be5ebecfcb120 commit: 8435a2278f964f48d36edbc5092be5ebecfcb120 branch: main author: Victor Stinner committer: encukou date: 2025-11-11T09:21:24+01:00 summary: gh-141376: Fix exported symbols (GH-141377) * gh-141376: Fix

[Python-checkins] [3.13] gh-139707: Specify `winreg`, `msvcrt` and `winsound` module availability in docs (GH-140429) (GH-141350)

2025-11-10 Thread encukou
https://github.com/python/cpython/commit/1f9f8e5f682b5fb294e3a3f210885b9e10a056ac commit: 1f9f8e5f682b5fb294e3a3f210885b9e10a056ac branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: encukou date: 2025-11-10T17:40:53+01:00 summary: [3.

[Python-checkins] [3.14] gh-139707: Specify `winreg`, `msvcrt` and `winsound` module availability in docs (GH-140429) (GH-141351)

2025-11-10 Thread encukou
https://github.com/python/cpython/commit/63a3737ce7584020a20e91cfb1764ef3555ba394 commit: 63a3737ce7584020a20e91cfb1764ef3555ba394 branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: encukou date: 2025-11-10T17:40:46+01:00 summary: [3.

[Python-checkins] [3.14] gh-139707: Add docs for optional modules (GH-140171) (GH-141204)

2025-11-10 Thread encukou
https://github.com/python/cpython/commit/c12a0bef40377580e72372da202db097755fa36b commit: c12a0bef40377580e72372da202db097755fa36b branch: 3.14 author: Stan Ulbrych <[email protected]> committer: encukou date: 2025-11-10T15:20:00+01:00 summary: [3.14] gh-

[Python-checkins] [3.13] Clarify argument/result ownership/validity for PyModule_* functions (GH-141159) (GH-141191)

2025-11-10 Thread encukou
https://github.com/python/cpython/commit/6384c7917db03b186fda163d0abef8dbe723f86b commit: 6384c7917db03b186fda163d0abef8dbe723f86b branch: 3.13 author: Petr Viktorin committer: encukou date: 2025-11-10T15:06:58+01:00 summary: [3.13] Clarify argument/result ownership/validity for PyModule_

[Python-checkins] gh-137530: generate an __annotate__ function for dataclasses __init__ (GH-137711)

2025-11-10 Thread encukou
https://github.com/python/cpython/commit/12837c63635559873a5abddf511d38456d69617b commit: 12837c63635559873a5abddf511d38456d69617b branch: main author: David Ellis committer: encukou date: 2025-11-10T14:57:11+01:00 summary: gh-137530: generate an __annotate__ function for dataclasses __init__

[Python-checkins] gh-136702: Clear codec caches for refleak tests; use test.support helpers (GH-141345)

2025-11-10 Thread encukou
https://github.com/python/cpython/commit/9f5152441d32166134c3c64f56f974b9476f9478 commit: 9f5152441d32166134c3c64f56f974b9476f9478 branch: main author: Petr Viktorin committer: encukou date: 2025-11-10T14:42:18+01:00 summary: gh-136702: Clear codec caches for refleak tests; use test.support

[Python-checkins] gh-139707: Specify `winreg`, `msvcrt` and `winsound` module availability in docs (GH-140429)

2025-11-10 Thread encukou
https://github.com/python/cpython/commit/13fa313bebed71d8bc64f1cfdaf4b2f1ddd3ce5f commit: 13fa313bebed71d8bc64f1cfdaf4b2f1ddd3ce5f branch: main author: Stan Ulbrych <[email protected]> committer: encukou date: 2025-11-10T14:37:34+01:00 summary: gh-139707: S

[Python-checkins] [3.14] Clarify argument/result ownership/validity for PyModule_* functions (GH-141159) (GH-141190)

2025-11-07 Thread encukou
https://github.com/python/cpython/commit/7c3539bd0934436af03b019bccb912b4fbd93e3b commit: 7c3539bd0934436af03b019bccb912b4fbd93e3b branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: encukou date: 2025-11-07T13:23:29Z summary: [3.14] C

[Python-checkins] Clarify argument/result ownership/validity for PyModule_* functions (GH-141159)

2025-11-07 Thread encukou
https://github.com/python/cpython/commit/ffd64737d00277eea1c4721d278a0951168d07ca commit: ffd64737d00277eea1c4721d278a0951168d07ca branch: main author: Petr Viktorin committer: encukou date: 2025-11-07T14:17:47+01:00 summary: Clarify argument/result ownership/validity for PyModule_* functions

[Python-checkins] [3.14] gh-139246: zero-width word paste can be wrong in default repl (GH-139254) (GH-140796)

2025-11-07 Thread encukou
https://github.com/python/cpython/commit/d729087c0674aaa52f4f0b98ac5f5c24b278f295 commit: d729087c0674aaa52f4f0b98ac5f5c24b278f295 branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: encukou date: 2025-11-07T13:50:06+01:00 summary: [3.

[Python-checkins] [3.13] gh-139246: zero-width word paste can be wrong in default repl (GH-139254) (GH-141166)

2025-11-07 Thread encukou
https://github.com/python/cpython/commit/0923704b49e4b390eda4085e97cae590405660d4 commit: 0923704b49e4b390eda4085e97cae590405660d4 branch: 3.13 author: Stan Ulbrych <[email protected]> committer: encukou date: 2025-11-07T13:51:03+01:00 summary: [3.13] gh-

[Python-checkins] [3.14] gh-138189: Document type slots, and other constants, as part of Limited API (GH-138190) (GH-141131)

2025-11-06 Thread encukou
https://github.com/python/cpython/commit/7168553c00767689376c8dbf5933a01af87da3a4 commit: 7168553c00767689376c8dbf5933a01af87da3a4 branch: 3.14 author: Hugo van Kemenade <[email protected]> committer: encukou date: 2025-11-06T12:39:19+01:00 summary: [3.14] gh-

[Python-checkins] gh-139707: Add docs for optional modules (GH-140171)

2025-11-06 Thread encukou
https://github.com/python/cpython/commit/d2ce6d708a9eaac4e546744ca4da359ee6901ebc commit: d2ce6d708a9eaac4e546744ca4da359ee6901ebc branch: main author: Petr Viktorin committer: encukou date: 2025-11-06T11:49:44+01:00 summary: gh-139707: Add docs for optional modules (GH-140171) Co-authored-by

[Python-checkins] gh-140550: Initial implementation of PEP 793 – PyModExport (GH-140556)

2025-11-05 Thread encukou
https://github.com/python/cpython/commit/589a03a8ce60cc65f91930f7d63367b03cfbbb12 commit: 589a03a8ce60cc65f91930f7d63367b03cfbbb12 branch: main author: Petr Viktorin committer: encukou date: 2025-11-05T12:31:42+01:00 summary: gh-140550: Initial implementation of PEP 793 – PyModExport (GH-140556

[Python-checkins] gh-140691: urllib.request: Close FTP control socket if data socket can't connect (GH-140835)

2025-11-05 Thread encukou
https://github.com/python/cpython/commit/f2bce51b984f52db14d90f7bbd0b7df00b7c5637 commit: f2bce51b984f52db14d90f7bbd0b7df00b7c5637 branch: main author: Petr Viktorin committer: encukou date: 2025-11-05T11:52:11+01:00 summary: gh-140691: urllib.request: Close FTP control socket if data socket

[Python-checkins] gh-138189: Document type slots, and other constants, as part of Limited API (GH-138190)

2025-11-04 Thread encukou
https://github.com/python/cpython/commit/d81e1ef0f3a7c63f5d246e4cf918700016b72489 commit: d81e1ef0f3a7c63f5d246e4cf918700016b72489 branch: main author: Petr Viktorin committer: encukou date: 2025-11-04T22:58:53+01:00 summary: gh-138189: Document type slots, and other constants, as part of

[Python-checkins] [3.13] Fix minor typo: 'web site' -> 'website' (GH-140561) (GH-140977)

2025-11-04 Thread encukou
https://github.com/python/cpython/commit/551d68d8cfa2781d383c153f197f6046682cef21 commit: 551d68d8cfa2781d383c153f197f6046682cef21 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: encukou date: 2025-11-04T14:11:15+01:00 summary: [3.1

[Python-checkins] [3.14] Fix minor typo: 'web site' -> 'website' (GH-140561) (GH-140976)

2025-11-04 Thread encukou
https://github.com/python/cpython/commit/5b88a6533cdd5b4865d3fbe77829473e20aaa208 commit: 5b88a6533cdd5b4865d3fbe77829473e20aaa208 branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: encukou date: 2025-11-04T14:11:08+01:00 summary: [3.1

[Python-checkins] Fix minor typo: 'web site' -> 'website' (GH-140561)

2025-11-04 Thread encukou
https://github.com/python/cpython/commit/08115d241a724a476953f654f77abcdebf5a commit: 08115d241a724a476953f654f77abcdebf5a branch: main author: commitWithTisha committer: encukou date: 2025-11-04T10:23:49+01:00 summary: Fix minor typo: 'web site' -> 'website' (G

[Python-checkins] Docs: Fix a typo in `idle.rst` (Chitespace -> Whitespace) (GH-140946)

2025-11-03 Thread encukou
https://github.com/python/cpython/commit/b373d3494c587cf27b31f3dff89a8d96f7d29b9d commit: b373d3494c587cf27b31f3dff89a8d96f7d29b9d branch: main author: Yongzi Li <[email protected]> committer: encukou date: 2025-11-03T16:48:10+01:00 summary: Docs: Fix a typo in `id

[Python-checkins] Docs: Fix typo in codecs documentation (GH-140883)

2025-11-03 Thread encukou
https://github.com/python/cpython/commit/478b8dab0b40f08c3ded40bf988ec49a50f4c8fb commit: 478b8dab0b40f08c3ded40bf988ec49a50f4c8fb branch: main author: Stan Ulbrych <[email protected]> committer: encukou date: 2025-11-03T16:47:52+01:00 summary: Docs: Fix t

[Python-checkins] [3.14] Revert "gh-137969: Fix evaluation of `ref.evaluate(format=Format.FORWARDREF)` objects (GH-138075) (#140929)" (GH-140931)

2025-11-03 Thread encukou
https://github.com/python/cpython/commit/1b376b82ac98517a55f13b5ec8645dc667762912 commit: 1b376b82ac98517a55f13b5ec8645dc667762912 branch: 3.14 author: Jelle Zijlstra committer: encukou date: 2025-11-03T15:07:22+01:00 summary: [3.14] Revert "gh-137969: Fix evaluation of `ref.evaluate(f

[Python-checkins] gh-139246: zero-width word paste can be wrong in default repl (GH-139254)

2025-10-30 Thread encukou
https://github.com/python/cpython/commit/4e6dba0ef74523a52f66547c16b9972664b18fd4 commit: 4e6dba0ef74523a52f66547c16b9972664b18fd4 branch: main author: yihong committer: encukou date: 2025-10-30T16:14:06+01:00 summary: gh-139246: zero-width word paste can be wrong in default repl (GH-139254

[Python-checkins] gh-140748: socket_helper.transient_internet: Unwrap UrlError.__cause__ (GH-140749)

2025-10-30 Thread encukou
https://github.com/python/cpython/commit/75a1cbdd38b142b359849eae16a2ecc12f6b3881 commit: 75a1cbdd38b142b359849eae16a2ecc12f6b3881 branch: main author: Petr Viktorin committer: encukou date: 2025-10-30T12:14:17+01:00 summary: gh-140748: socket_helper.transient_internet: Unwrap UrlError

[Python-checkins] gh-139188: Remove `Tools/tz/zdump.py` script (GH-139189)

2025-10-30 Thread encukou
https://github.com/python/cpython/commit/134adb32e86c5c4f1335c5884483adf9c56120b0 commit: 134adb32e86c5c4f1335c5884483adf9c56120b0 branch: main author: Stan Ulbrych <[email protected]> committer: encukou date: 2025-10-30T12:12:45+01:00 summary: gh-139188:

[Python-checkins] gh-139198: Remove `Tools/scripts/checkpip.py` script (GH-139199)

2025-10-30 Thread encukou
https://github.com/python/cpython/commit/622d97b8bbeb9ebdaa1061adf99a8b240d715e2f commit: 622d97b8bbeb9ebdaa1061adf99a8b240d715e2f branch: main author: Stan Ulbrych <[email protected]> committer: encukou date: 2025-10-30T11:50:16+01:00 summary: gh-139198:

[Python-checkins] gh-140657: Don't rerun test_import single phase init test (GH-140712)

2025-10-28 Thread encukou
https://github.com/python/cpython/commit/c6d4c79c9abac5c5cc2e7b429d72946d15c5e132 commit: c6d4c79c9abac5c5cc2e7b429d72946d15c5e132 branch: main author: Victor Stinner committer: encukou date: 2025-10-28T18:05:03+01:00 summary: gh-140657: Don't rerun test_import single phase init test (GH-1

[Python-checkins] GH-140590: Fix setstate for functools.partial C-module (GH-140671)

2025-10-28 Thread encukou
https://github.com/python/cpython/commit/d26686a7f87d63499f7296c0811fa0535637a93b commit: d26686a7f87d63499f7296c0811fa0535637a93b branch: main author: Sergey Miryanov committer: encukou date: 2025-10-28T10:28:32+01:00 summary: GH-140590: Fix setstate for functools.partial C-module (GH-140671

[Python-checkins] [3.14] gh-134160: Add more comments for the xxlimited module (GH-140214) (GH-140664)

2025-10-28 Thread encukou
https://github.com/python/cpython/commit/84e01df17536cf1431506d89424bd2870a633971 commit: 84e01df17536cf1431506d89424bd2870a633971 branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: encukou date: 2025-10-28T10:24:11+01:00 summary: [3.

[Python-checkins] [3.13] gh-140487: Fix Py_RETURN_NOTIMPLEMENTED in limited C API 3.11 (GH-140636) (GH-140670)

2025-10-27 Thread encukou
https://github.com/python/cpython/commit/ec5f5418f9165d9e3f0841e68f7882bf64c492fb commit: ec5f5418f9165d9e3f0841e68f7882bf64c492fb branch: 3.13 author: Victor Stinner committer: encukou date: 2025-10-27T14:43:59+01:00 summary: [3.13] gh-140487: Fix Py_RETURN_NOTIMPLEMENTED in limited C API 3.11

[Python-checkins] [3.13] gh-140633: AppleFrameworkLoader: Ignore AttributeError when setting __file__ (GH-140635) (GH-140659)

2025-10-27 Thread encukou
https://github.com/python/cpython/commit/0e3b47b839f40238bdb693c00cc24913c0acc87f commit: 0e3b47b839f40238bdb693c00cc24913c0acc87f branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: encukou date: 2025-10-27T14:08:09+01:00 summary: [3.

[Python-checkins] [3.14] gh-140633: AppleFrameworkLoader: Ignore AttributeError when setting __file__ (GH-140635) (GH-140660)

2025-10-27 Thread encukou
https://github.com/python/cpython/commit/87afee231278417f87078bf3a225e012c72e9339 commit: 87afee231278417f87078bf3a225e012c72e9339 branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: encukou date: 2025-10-27T14:08:00+01:00 summary: [3.

[Python-checkins] gh-140487: Fix Py_RETURN_NOTIMPLEMENTED in limited C API 3.11 (GH-140636)

2025-10-27 Thread encukou
https://github.com/python/cpython/commit/c6364775236e3c634c3393c7f50fece50611245f commit: c6364775236e3c634c3393c7f50fece50611245f branch: main author: Victor Stinner committer: encukou date: 2025-10-27T12:59:56+01:00 summary: gh-140487: Fix Py_RETURN_NOTIMPLEMENTED in limited C API 3.11 (GH

[Python-checkins] gh-134160: Add more comments for the xxlimited module (GH-140214)

2025-10-27 Thread encukou
https://github.com/python/cpython/commit/18e4a89e42c681fe035d4d39a71e79d3c6b70903 commit: 18e4a89e42c681fe035d4d39a71e79d3c6b70903 branch: main author: Petr Viktorin committer: encukou date: 2025-10-27T11:39:42+01:00 summary: gh-134160: Add more comments for the xxlimited module (GH-140214

[Python-checkins] gh-140633: AppleFrameworkLoader: Ignore AttributeError when setting __file__ (GH-140635)

2025-10-27 Thread encukou
https://github.com/python/cpython/commit/3416e7c8dc004773d814b6f9ec9562434ed961cd commit: 3416e7c8dc004773d814b6f9ec9562434ed961cd branch: main author: Petr Viktorin committer: encukou date: 2025-10-27T10:09:22+01:00 summary: gh-140633: AppleFrameworkLoader: Ignore AttributeError when setting

[Python-checkins] [3.13] Document that PyModule_GetDef can return NULL with or without setting an exception (GH-140529) (GH-140546)

2025-10-24 Thread encukou
https://github.com/python/cpython/commit/5c99b6c576be7a7f11ce7a95f1422b25954bb07e commit: 5c99b6c576be7a7f11ce7a95f1422b25954bb07e branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: encukou date: 2025-10-24T13:37:09Z summary: [3.13] Do

[Python-checkins] [3.14] Document that PyModule_GetDef can return NULL with or without setting an exception (GH-140529) (GH-140545)

2025-10-24 Thread encukou
https://github.com/python/cpython/commit/a975bea9b578beef9f979b3a527d324d791bef0d commit: a975bea9b578beef9f979b3a527d324d791bef0d branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: encukou date: 2025-10-24T13:36:35Z summary: [3.14] Do

[Python-checkins] Document that PyModule_GetDef can return NULL with or without setting an exception (GH-140529)

2025-10-24 Thread encukou
https://github.com/python/cpython/commit/289360ae63933c8956f87307ff091ec9ed19afed commit: 289360ae63933c8956f87307ff091ec9ed19afed branch: main author: Petr Viktorin committer: encukou date: 2025-10-24T15:28:48+02:00 summary: Document that PyModule_GetDef can return NULL with or without setting

[Python-checkins] gh-133390: sqlite3 CLI completion for tables, columns, indices, triggers, views, functions, schemata (GH-136101)

2025-10-23 Thread encukou
https://github.com/python/cpython/commit/161b3064efdafd2008378a88a8009897df1b58d2 commit: 161b3064efdafd2008378a88a8009897df1b58d2 branch: main author: Tan Long committer: encukou date: 2025-10-24T08:26:36+02:00 summary: gh-133390: sqlite3 CLI completion for tables, columns, indices, triggers

[Python-checkins] gh-83714: Only use STATX_MNT_ID & STATX_SUBVOL if they're defined (GH-140446)

2025-10-22 Thread encukou
https://github.com/python/cpython/commit/e53e9eb2f1b148219d1a269e979bc7aef4fc8302 commit: e53e9eb2f1b148219d1a269e979bc7aef4fc8302 branch: main author: Petr Viktorin committer: encukou date: 2025-10-22T12:42:51+02:00 summary: gh-83714: Only use STATX_MNT_ID & STATX_SUBVOL if they're de

[Python-checkins] gh-133951: Add venv changes to documentation and whatsnew (GH-139704)

2025-10-21 Thread encukou
https://github.com/python/cpython/commit/5c41666ec48e643485628ef06e98373b48744c6e commit: 5c41666ec48e643485628ef06e98373b48744c6e branch: main author: Cycloctane committer: encukou date: 2025-10-21T10:52:57+02:00 summary: gh-133951: Add venv changes to documentation and whatsnew (GH-139704

[Python-checkins] gh-139707: Better `ModuleNotFoundError` message for missing stdlib modules (GH-140219)

2025-10-21 Thread encukou
https://github.com/python/cpython/commit/47d2f68df215b5bcbc76a50d3f4e0b68791e3e79 commit: 47d2f68df215b5bcbc76a50d3f4e0b68791e3e79 branch: main author: Stan Ulbrych <[email protected]> committer: encukou date: 2025-10-21T09:12:04+02:00 summary: gh-139707:

[Python-checkins] [3.14] gh-66646: Explain __base__ attribute in the docs (GH-102554) (GH-140365)

2025-10-21 Thread encukou
https://github.com/python/cpython/commit/4215f7f519cf75edc0ef5dcd803c24e7767a2a62 commit: 4215f7f519cf75edc0ef5dcd803c24e7767a2a62 branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: encukou date: 2025-10-21T09:06:49+02:00 summary: [3.

[Python-checkins] [3.13] gh-66646: Explain __base__ attribute in the docs (GH-102554) (GH-140366)

2025-10-21 Thread encukou
https://github.com/python/cpython/commit/677a488e046aefbd4b88772fbf951d047ace9388 commit: 677a488e046aefbd4b88772fbf951d047ace9388 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: encukou date: 2025-10-21T09:06:56+02:00 summary: [3.

[Python-checkins] gh-66646: Explain __base__ attribute in the docs (GH-102554)

2025-10-20 Thread encukou
https://github.com/python/cpython/commit/faa169afa0dad9586b294ea9ab6e5e17c5712861 commit: faa169afa0dad9586b294ea9ab6e5e17c5712861 branch: main author: Furkan Onder committer: encukou date: 2025-10-20T14:15:30+02:00 summary: gh-66646: Explain __base__ attribute in the docs (GH-102554) Co

[Python-checkins] [3.14] Add test for opening an SQLite with bytes path (GH-136331) (GH-137632)

2025-10-18 Thread encukou
https://github.com/python/cpython/commit/827c90b8b2425b1d71080c6db18104912b31da61 commit: 827c90b8b2425b1d71080c6db18104912b31da61 branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: encukou date: 2025-10-07T22:35:06+02:00 summary: [3.1

[Python-checkins] [3.14] gh-63161: Add more tests for source encoding (GH-139440) (GH-139442)

2025-10-18 Thread encukou
https://github.com/python/cpython/commit/a869796927932b17573344c64ba4302ed58742d7 commit: a869796927932b17573344c64ba4302ed58742d7 branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: encukou date: 2025-10-07T22:51:14+02:00 summary: [3.

[Python-checkins] [3.14] gh-137920: Fix semantically relevant typo in curses.window.attron (#137940) (GH-138506)

2025-10-18 Thread encukou
https://github.com/python/cpython/commit/537b558ce99e5783c451a5e152eddf5fdd6bf6ea commit: 537b558ce99e5783c451a5e152eddf5fdd6bf6ea branch: 3.14 author: Stan Ulbrych <[email protected]> committer: encukou date: 2025-10-07T22:21:41+02:00 summary: [3.14] gh-

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

2025-10-18 Thread encukou
https://github.com/python/cpython/commit/dfdda53e6795c7e9621041fbb4b309759b7c1b06 commit: dfdda53e6795c7e9621041fbb4b309759b7c1b06 branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: encukou date: 2025-10-07T23:06:37+02:00 summary: [3.

[Python-checkins] GH-137573: Add test to check that the margin used for overflow protection is larger than the stack space used by the interpreter (GH-137724)

2025-10-18 Thread encukou
https://github.com/python/cpython/commit/16eae6d90d49ef036b010777ceffd130cfa96126 commit: 16eae6d90d49ef036b010777ceffd130cfa96126 branch: main author: Mark Shannon committer: encukou date: 2025-09-23T15:47:27+02:00 summary: GH-137573: Add test to check that the margin used for overflow

[Python-checkins] gh-137589: Zipfile tests: close file objects (GH-138080)

2025-10-18 Thread encukou
https://github.com/python/cpython/commit/5cea8435943b4f9d22c89c80d86c2ba3b392c6f9 commit: 5cea8435943b4f9d22c89c80d86c2ba3b392c6f9 branch: main author: Rogdham <[email protected]> committer: encukou date: 2025-10-08T14:29:37+02:00 summary: gh-137589: Zipfile tests:

[Python-checkins] [3.13] Remove duplicate words in the documentation (GH-140221) (GH-140226)

2025-10-18 Thread encukou
https://github.com/python/cpython/commit/134b4f2fd18118be0b379219608051f9b7e6d84c commit: 134b4f2fd18118be0b379219608051f9b7e6d84c branch: 3.13 author: Tan Long committer: encukou date: 2025-10-16T20:10:31+02:00 summary: [3.13] Remove duplicate words in the documentation (GH-140221) (GH-140226

[Python-checkins] [3.14] gh-138729: Cover `inspect.formatannotationrelativeto` with tests (GH-138730) (GH-138747)

2025-10-18 Thread encukou
https://github.com/python/cpython/commit/63bd8cfcdb7b8682390517cf89796c5b027a09db commit: 63bd8cfcdb7b8682390517cf89796c5b027a09db branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: encukou date: 2025-10-07T23:10:49+02:00 summary: [3.

[Python-checkins] gh-139817: Fix refleak in TypeAliasType(qualname=non_string) (GH-140197)

2025-10-18 Thread encukou
https://github.com/python/cpython/commit/ea4cc585cd12ed73e5fe9978f943ceff5bb5cd51 commit: ea4cc585cd12ed73e5fe9978f943ceff5bb5cd51 branch: main author: Petr Viktorin committer: encukou date: 2025-10-16T11:04:04Z summary: gh-139817: Fix refleak in TypeAliasType(qualname=non_string) (GH-140197

[Python-checkins] [3.14] gh-138860: Lazy import rlcompleter in pdb to avoid deadlock in subprocess (GH-139185) (GH-139305) (GH-139280)

2025-10-18 Thread encukou
https://github.com/python/cpython/commit/51b104302988b9da8e83edf6c42a9de8ca5a22c2 commit: 51b104302988b9da8e83edf6c42a9de8ca5a22c2 branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: encukou date: 2025-10-10T16:23:52+02:00 summary: [3.

[Python-checkins] gh-140065: Lexical analysis: Correct note about leading zeros in floating point numbers (GH-140066)

2025-10-18 Thread encukou
https://github.com/python/cpython/commit/1624c646b045df15ba41d17ff03231978b80c3ff commit: 1624c646b045df15ba41d17ff03231978b80c3ff branch: main author: Stan Ulbrych <[email protected]> committer: encukou date: 2025-10-15T15:15:45Z summary: gh-140065: L

[Python-checkins] [3.14] gh-137433: Fix deadlock with stop-the-world and daemon threads (gh-137735) (GH-138965)

2025-10-18 Thread encukou
https://github.com/python/cpython/commit/e09f33e5bf21c68fd4b214a21240381cc2df0a7b commit: e09f33e5bf21c68fd4b214a21240381cc2df0a7b branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: encukou date: 2025-10-07T20:46:52+02:00 summary: [3.

[Python-checkins] gh-130567: Remove optimistic allocation in locale.strxfrm() (GH-137143)

2025-10-18 Thread encukou
https://github.com/python/cpython/commit/2a2bc82cef9c6ae0b8de833e2b4aee37519de9d7 commit: 2a2bc82cef9c6ae0b8de833e2b4aee37519de9d7 branch: main author: Serhiy Storchaka committer: encukou date: 2025-10-16T09:54:41+02:00 summary: gh-130567: Remove optimistic allocation in locale.strxfrm() (GH

[Python-checkins] gh-139823: Check if `zlib` is available in `ensurepip` (GH-139954)

2025-10-18 Thread encukou
https://github.com/python/cpython/commit/1a82568568a302d372690b07c7d9c45719e89bd4 commit: 1a82568568a302d372690b07c7d9c45719e89bd4 branch: main author: Stan Ulbrych <[email protected]> committer: encukou date: 2025-10-13T16:01:06+02:00 summary: gh-139823: Ch

[Python-checkins] [3.14] bpo-41839: Fix error checking in sched_get_priority_ functions (GH-22374) (GH-138201)

2025-10-18 Thread encukou
https://github.com/python/cpython/commit/d424344ce9e7f4a5d7ed42f660a33769e5606f9a commit: d424344ce9e7f4a5d7ed42f660a33769e5606f9a branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: encukou date: 2025-10-08T14:26:59+02:00 summary: [3.1

[Python-checkins] [3.14] gh-138239: Fix incorrect highlighting of "type" in type statements in the REPL (GH-138241) (GH-138937)

2025-10-18 Thread encukou
https://github.com/python/cpython/commit/61d49a5d37fbff7839fe7f2f746bbc9d464feb87 commit: 61d49a5d37fbff7839fe7f2f746bbc9d464feb87 branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: encukou date: 2025-10-07T23:02:32+02:00 summary: [3.

[Python-checkins] [3.14] gh-71648: Optimize PNG files (GH-138842) (GH-138851)

2025-10-18 Thread encukou
https://github.com/python/cpython/commit/a893270c6d96262a34bf54b6b9c96d28bfc9c30d commit: a893270c6d96262a34bf54b6b9c96d28bfc9c30d branch: 3.14 author: Stan Ulbrych <[email protected]> committer: encukou date: 2025-10-07T20:52:12+02:00 summary: [3.14] gh

[Python-checkins] [3.14] Remove duplicate words in the documentation (GH-140221) (GH-140225)

2025-10-18 Thread encukou
https://github.com/python/cpython/commit/12903c098be9c9c775d3f26dd4adbea2c7823b6d commit: 12903c098be9c9c775d3f26dd4adbea2c7823b6d branch: 3.14 author: Tan Long committer: encukou date: 2025-10-16T20:10:15+02:00 summary: [3.14] Remove duplicate words in the documentation (GH-140221) (GH-140225

[Python-checkins] [3.14] gh-139327: fix some reference leaks in `sqlite3` error branches (GH-139328) (GH-139471)

2025-10-18 Thread encukou
https://github.com/python/cpython/commit/6d94af4b98a856214c8d8dd259b6c2d4da3bc7ca commit: 6d94af4b98a856214c8d8dd259b6c2d4da3bc7ca branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: encukou date: 2025-10-07T20:22:20+02:00 summary: [3.

[Python-checkins] [3.14] gh-130567: Fix possible crash in locale.strxfrm() (GH-138940) (GH-139265)

2025-10-18 Thread encukou
https://github.com/python/cpython/commit/fff26500e52898b21021121ca8b32fc18820e518 commit: fff26500e52898b21021121ca8b32fc18820e518 branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: encukou date: 2025-10-07T21:54:04+02:00 summary: [3.

[Python-checkins] [3.14] gh-140065: Lexical analysis: Correct note about leading zeros in floating point numbers (GH-140066) (GH-140167)

2025-10-18 Thread encukou
https://github.com/python/cpython/commit/231552c6f7e6fc5cc4b2f401fe63663fcb6c646a commit: 231552c6f7e6fc5cc4b2f401fe63663fcb6c646a branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: encukou date: 2025-10-16T09:50:01+02:00 summary: [3.

  1   2   3   4   5   6   7   8   9   10   >