[Python-checkins] gh-132713: Simplify list_repr_impl() (#132811)

2025-04-23 Thread vstinner
https://github.com/python/cpython/commit/de9deb7ca7120fbb5cbbb53044ce91087065e723 commit: de9deb7ca7120fbb5cbbb53044ce91087065e723 branch: main author: Victor Stinner committer: vstinner date: 2025-04-23T08:59:30+02:00 summary: gh-132713: Simplify list_repr_impl() (#132811) files: M Objects/lis

[Python-checkins] gh-132719: Skip multiprocessing test if missing ctypes (#132846)

2025-04-23 Thread vstinner
https://github.com/python/cpython/commit/e2c69d36d16227a751c2d9c0f8a919cecf6b3048 commit: e2c69d36d16227a751c2d9c0f8a919cecf6b3048 branch: main author: Victor Stinner committer: vstinner date: 2025-04-23T20:33:15+02:00 summary: gh-132719: Skip multiprocessing test if missing ctypes (#132846) Sk

[Python-checkins] gh-131591: Check for remote debug in PyErr_CheckSignals (#132853)

2025-04-23 Thread pablogsal
https://github.com/python/cpython/commit/99b13775dab0f65d59099027549098f61023 commit: 99b13775dab0f65d59099027549098f61023 branch: main author: Pablo Galindo Salgado committer: pablogsal date: 2025-04-23T20:59:41+01:00 summary: gh-131591: Check for remote debug in PyErr_CheckSignals (#13

[Python-checkins] [3.13] gh-109981: Resolve situation on iOS regarding fd_count. (GH-132823) (#132824)

2025-04-23 Thread freakboy3742
https://github.com/python/cpython/commit/b220c1c0a479fdb362d97735034f7ce2edf1e3db commit: b220c1c0a479fdb362d97735034f7ce2edf1e3db branch: 3.13 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: freakboy3742 date: 2025-04-23T21:40:25Z summary: [3.13] gh-109

[Python-checkins] [3.13] gh-132713: Fix repr(list) race condition (#132801) (#132809)

2025-04-23 Thread vstinner
https://github.com/python/cpython/commit/3de0f55f3410ae835923d10ae098558900a9a121 commit: 3de0f55f3410ae835923d10ae098558900a9a121 branch: 3.13 author: Victor Stinner committer: vstinner date: 2025-04-23T15:44:33+02:00 summary: [3.13] gh-132713: Fix repr(list) race condition (#132801) (#132809)

[Python-checkins] gh-132449: Improve the algorithm to detect typos in keywords (#132837)

2025-04-23 Thread pablogsal
https://github.com/python/cpython/commit/32c4bbe834aeb077dd12414b65b123cf7fb5b117 commit: 32c4bbe834aeb077dd12414b65b123cf7fb5b117 branch: main author: Pablo Galindo Salgado committer: pablogsal date: 2025-04-23T14:45:18+01:00 summary: gh-132449: Improve the algorithm to detect typos in keywords

[Python-checkins] gh-91048: Add ability to list all pending asyncio tasks in a process remotely (#132807)

2025-04-23 Thread pablogsal
https://github.com/python/cpython/commit/c9bc458d307f9b8a97ffb3e19f630b23744fa96c commit: c9bc458d307f9b8a97ffb3e19f630b23744fa96c branch: main author: Ɓukasz Langa committer: pablogsal date: 2025-04-23T18:22:29+01:00 summary: gh-91048: Add ability to list all pending asyncio tasks in a process

[Python-checkins] gh-127604: Allow faulthandler to dumpC stack on MacOS (#132841)

2025-04-23 Thread pablogsal
https://github.com/python/cpython/commit/1007aab1330d3cf1a4021905ab424a1fd04747cc commit: 1007aab1330d3cf1a4021905ab424a1fd04747cc branch: main author: Pablo Galindo Salgado committer: pablogsal date: 2025-04-23T18:23:24+01:00 summary: gh-127604: Allow faulthandler to dumpC stack on MacOS (#1328

[Python-checkins] gh-132734: Fix build on FreeBSD and old Linux (GH-132829)

2025-04-23 Thread serhiy-storchaka
https://github.com/python/cpython/commit/d7be26a71e74818c4df60f31c879e52da2e1e94e commit: d7be26a71e74818c4df60f31c879e52da2e1e94e branch: main author: Serhiy Storchaka committer: serhiy-storchaka date: 2025-04-23T14:08:30+03:00 summary: gh-132734: Fix build on FreeBSD and old Linux (GH-132829)

[Python-checkins] gh-132742: Update documentation for the fcntl module (GH-132765)

2025-04-23 Thread serhiy-storchaka
https://github.com/python/cpython/commit/5f50541ebd420a2d21a20c6f492e343657e06c1a commit: 5f50541ebd420a2d21a20c6f492e343657e06c1a branch: main author: Serhiy Storchaka committer: serhiy-storchaka date: 2025-04-23T14:27:21+03:00 summary: gh-132742: Update documentation for the fcntl module (GH-1

[Python-checkins] gh-132825: Enhance unhashable error messages for dict and set (#132828)

2025-04-23 Thread cfbolz
https://github.com/python/cpython/commit/426449d9834855fcf8c150889157af8c39526b81 commit: 426449d9834855fcf8c150889157af8c39526b81 branch: main author: Victor Stinner committer: cfbolz date: 2025-04-23T17:10:09+02:00 summary: gh-132825: Enhance unhashable error messages for dict and set (#132828

[Python-checkins] [3.13] gh-132713: Fix typing.Union[index] race condition (GH-132802) (#132839)

2025-04-23 Thread vstinner
https://github.com/python/cpython/commit/341b86e095e59f849c80312ccdb5b70e00fa5216 commit: 341b86e095e59f849c80312ccdb5b70e00fa5216 branch: 3.13 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: vstinner date: 2025-04-23T14:12:03Z summary: [3.13] gh-132713:

[Python-checkins] gh-132449: Add whatsnew entry for typos in keywords (#132838)

2025-04-23 Thread pablogsal
https://github.com/python/cpython/commit/41dec4158d880a3fd200a84683521fe4ea618992 commit: 41dec4158d880a3fd200a84683521fe4ea618992 branch: main author: Pablo Galindo Salgado committer: pablogsal date: 2025-04-23T14:27:53+01:00 summary: gh-132449: Add whatsnew entry for typos in keywords (#132838

[Python-checkins] gh-127604: Fix refleak in faulthandler_dump_c_stack_py() (#132840)

2025-04-23 Thread vstinner
https://github.com/python/cpython/commit/1aaca7ab483e347f7dc412c9b78b794bd7f94043 commit: 1aaca7ab483e347f7dc412c9b78b794bd7f94043 branch: main author: Victor Stinner committer: vstinner date: 2025-04-23T14:29:31Z summary: gh-127604: Fix refleak in faulthandler_dump_c_stack_py() (#132840) files

[Python-checkins] gh-132719: Skip multiprocessing test if missing ctypes (#132842)

2025-04-23 Thread vstinner
https://github.com/python/cpython/commit/b2e666f30aa66b3f5e7ccbcf4e5f21e2d89e39a8 commit: b2e666f30aa66b3f5e7ccbcf4e5f21e2d89e39a8 branch: main author: Victor Stinner committer: vstinner date: 2025-04-23T14:36:25Z summary: gh-132719: Skip multiprocessing test if missing ctypes (#132842) Skip te

[Python-checkins] gh-121249: adjust formatting codes for complex types in struct/ctypes (#132827)

2025-04-23 Thread vstinner
https://github.com/python/cpython/commit/85f89cb3e6bea6022cb58ffda560cf435f0adf94 commit: 85f89cb3e6bea6022cb58ffda560cf435f0adf94 branch: main author: Sergey B Kirpichev committer: vstinner date: 2025-04-23T15:38:24+02:00 summary: gh-121249: adjust formatting codes for complex types in struct/c

[Python-checkins] gh-132713: Fix typing.Union[index] race condition (#132802)

2025-04-23 Thread vstinner
https://github.com/python/cpython/commit/dc3e9638c22fc1fa807a88c32316ac2558a4b879 commit: dc3e9638c22fc1fa807a88c32316ac2558a4b879 branch: main author: Victor Stinner committer: vstinner date: 2025-04-23T15:45:42+02:00 summary: gh-132713: Fix typing.Union[index] race condition (#132802) Add uni

[Python-checkins] gh-132758: Fix tail call and pystats builds (GH-132759)

2025-04-23 Thread Fidget-Spinner
https://github.com/python/cpython/commit/6430c634da4332550744fe8f50b12c927b8382f6 commit: 6430c634da4332550744fe8f50b12c927b8382f6 branch: main author: Ken Jin committer: Fidget-Spinner date: 2025-04-23T18:17:35+08:00 summary: gh-132758: Fix tail call and pystats builds (GH-132759) files: A Mis

[Python-checkins] gh-132825: Fix typo in dict_unhashable_type() name (#132847)

2025-04-23 Thread cfbolz
https://github.com/python/cpython/commit/926ff69f3f59c97a73b90dbaa0842b14339bf66d commit: 926ff69f3f59c97a73b90dbaa0842b14339bf66d branch: main author: Victor Stinner committer: cfbolz date: 2025-04-23T18:54:13+02:00 summary: gh-132825: Fix typo in dict_unhashable_type() name (#132847) files: M

[Python-checkins] [3.13] gh-83994, gh-132843: Fix and improve test_ioctl (GH-132848) (GH-132850)

2025-04-23 Thread serhiy-storchaka
https://github.com/python/cpython/commit/f8d4ca42ae2b0da9e3df65884b6e55f2e4035070 commit: f8d4ca42ae2b0da9e3df65884b6e55f2e4035070 branch: 3.13 author: Serhiy Storchaka committer: serhiy-storchaka date: 2025-04-23T19:17:51Z summary: [3.13] gh-83994, gh-132843: Fix and improve test_ioctl (GH-1328

[Python-checkins] gh-127604: Replace dprintf() with _Py_write_noraise() (#132854)

2025-04-23 Thread vstinner
https://github.com/python/cpython/commit/402dba29281c1e1092ff32875c91f23bacabb677 commit: 402dba29281c1e1092ff32875c91f23bacabb677 branch: main author: Victor Stinner committer: vstinner date: 2025-04-23T20:02:25Z summary: gh-127604: Replace dprintf() with _Py_write_noraise() (#132854) files: M

[Python-checkins] gh-132859: Run debugger scripts in their own namespaces (#132860)

2025-04-23 Thread pablogsal
https://github.com/python/cpython/commit/a94c7528b596e9ec234f12ebeeb45fc731412b18 commit: a94c7528b596e9ec234f12ebeeb45fc731412b18 branch: main author: Matt Wozniski committer: pablogsal date: 2025-04-23T23:40:24Z summary: gh-132859: Run debugger scripts in their own namespaces (#132860) Run de

[Python-checkins] [3.13] gh-132742: Update documentation for the fcntl module (GH-132765) (GH-132832)

2025-04-23 Thread serhiy-storchaka
https://github.com/python/cpython/commit/abbc44c55745184a91112a273934c1803c946bea commit: abbc44c55745184a91112a273934c1803c946bea branch: 3.13 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: serhiy-storchaka date: 2025-04-23T21:08:46+03:00 summary: [3.1

[Python-checkins] gh-83994, gh-132843: Fix and improve test_ioctl (GH-132848)

2025-04-23 Thread serhiy-storchaka
https://github.com/python/cpython/commit/4b4b9fbb06198f65424ed5be06c59f8b2801b99b commit: 4b4b9fbb06198f65424ed5be06c59f8b2801b99b branch: main author: Serhiy Storchaka committer: serhiy-storchaka date: 2025-04-23T21:45:55+03:00 summary: gh-83994, gh-132843: Fix and improve test_ioctl (GH-132848