[Python-checkins] gh-116869: Enable -Werror in test_cext for Free Threading (#117106)

2024-03-20 Thread vstinner
https://github.com/python/cpython/commit/f4cc77d494ee0e10ed84ce369f0910c70a2f6d44 commit: f4cc77d494ee0e10ed84ce369f0910c70a2f6d44 branch: main author: Victor Stinner committer: vstinner date: 2024-03-21T00:06:24+01:00 summary: gh-116869: Enable -Werror in test_cext for Free Threading (#117106)

[Python-checkins] gh-105927: Limit PyWeakref_GetRef() to limited C API 3.13 (#117091)

2024-03-20 Thread vstinner
https://github.com/python/cpython/commit/104602a6078564765b7b8f42888f8eaa37b129b1 commit: 104602a6078564765b7b8f42888f8eaa37b129b1 branch: main author: Victor Stinner committer: vstinner date: 2024-03-20T23:52:23+01:00 summary: gh-105927: Limit PyWeakref_GetRef() to limited C API 3.13 (#117091)

[Python-checkins] [3.11] Fix sort order for "locale encoding" glossary item (GH-115794) (#117103)

2024-03-20 Thread hugovk
https://github.com/python/cpython/commit/2f1806ed8abca9d12dcd4c57f24fe596f59773cf commit: 2f1806ed8abca9d12dcd4c57f24fe596f59773cf branch: 3.11 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2024-03-2

[Python-checkins] [3.12] Fix sort order for "locale encoding" glossary item (GH-115794) (#117102)

2024-03-20 Thread hugovk
https://github.com/python/cpython/commit/e84a8f37b1eb1d8c23deb439edcf3e82b1816db3 commit: e84a8f37b1eb1d8c23deb439edcf3e82b1816db3 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2024-03-2

[Python-checkins] Fix sort order for "locale encoding" glossary item (#115794)

2024-03-20 Thread hugovk
https://github.com/python/cpython/commit/7d446548ef53f6c3de1097c6d44cada6642ddc85 commit: 7d446548ef53f6c3de1097c6d44cada6642ddc85 branch: main author: Carol Willing committer: hugovk <[email protected]> date: 2024-03-20T15:00:59-06:00 summary: Fix sort order for "locale enc

[Python-checkins] [3.11] gh-116773: Fix overlapped memory corruption crash (GH-116774) (#117077)

2024-03-20 Thread gvanrossum
https://github.com/python/cpython/commit/23a1c9f422ad6952186f266ebf325abffcb33892 commit: 23a1c9f422ad6952186f266ebf325abffcb33892 branch: 3.11 author: jkriegshauser committer: gvanrossum date: 2024-03-20T13:10:32-07:00 summary: [3.11] gh-116773: Fix overlapped memory corruption crash (GH-116774

[Python-checkins] [3.12] gh-116773: Fix overlapped memory corruption crash (GH-116774) (#117078)

2024-03-20 Thread gvanrossum
https://github.com/python/cpython/commit/d69c51520e30584fb6eabdcaadd8d37a6631dcc3 commit: d69c51520e30584fb6eabdcaadd8d37a6631dcc3 branch: 3.12 author: jkriegshauser committer: gvanrossum date: 2024-03-20T13:10:15-07:00 summary: [3.12] gh-116773: Fix overlapped memory corruption crash (GH-116774

[Python-checkins] GH-117066: Tier 2 optimizer: Don't throw away good traces if we can't optimize them perfectly. (GH-117067)

2024-03-20 Thread markshannon
https://github.com/python/cpython/commit/63289b9dfbc7d87e81f1517422ee91b6b6d19531 commit: 63289b9dfbc7d87e81f1517422ee91b6b6d19531 branch: main author: Mark Shannon committer: markshannon date: 2024-03-20T18:24:02Z summary: GH-117066: Tier 2 optimizer: Don't throw away good traces if we can't op

[Python-checkins] [3.11] gh-117058: Update GUI and packaging recommendations for macOS. (GH-117059) (#117082)

2024-03-20 Thread hugovk
https://github.com/python/cpython/commit/7eedaf4a865eee29cc35f6ae3f3fe0d01ce508e8 commit: 7eedaf4a865eee29cc35f6ae3f3fe0d01ce508e8 branch: 3.11 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2024-03-2

[Python-checkins] [3.12] gh-117058: Update GUI and packaging recommendations for macOS. (GH-117059) (#117081)

2024-03-20 Thread hugovk
https://github.com/python/cpython/commit/8e00ead351af6b93b9557a42f46620e7e39dbd26 commit: 8e00ead351af6b93b9557a42f46620e7e39dbd26 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2024-03-2

[Python-checkins] gh-117058: Update GUI and packaging recommendations for macOS. (#117059)

2024-03-20 Thread hugovk
https://github.com/python/cpython/commit/44fbab43d8f3f2df07091d237824cf4fa1f6c57c commit: 44fbab43d8f3f2df07091d237824cf4fa1f6c57c branch: main author: Russell Keith-Magee committer: hugovk <[email protected]> date: 2024-03-20T17:32:56+02:00 summary: gh-117058: Update GUI an

[Python-checkins] gh-116908: Only write to `_pending_calls.calls_to_do` with atomic operations (#117044)

2024-03-20 Thread colesbury
https://github.com/python/cpython/commit/9221ef2d8cb7f4cf37592eb650d4c8f972033000 commit: 9221ef2d8cb7f4cf37592eb650d4c8f972033000 branch: main author: Brett Simmers committer: colesbury date: 2024-03-20T11:18:26-04:00 summary: gh-116908: Only write to `_pending_calls.calls_to_do` with atomic op

[Python-checkins] [3.12] gh-117021: Fix integer overflow in PyLong_AsPid() on non-Windows 64-bit platforms (GH-117064) (GH-117070)

2024-03-20 Thread serhiy-storchaka
https://github.com/python/cpython/commit/da2f9d1417a7d28df6e1ced87d64ecf28acb0a5f commit: da2f9d1417a7d28df6e1ced87d64ecf28acb0a5f branch: 3.12 author: Serhiy Storchaka committer: serhiy-storchaka date: 2024-03-20T16:44:05+02:00 summary: [3.12] gh-117021: Fix integer overflow in PyLong_AsPid() o

[Python-checkins] gh-116773: Ensure overlapped objects on Windows are not deallocated too early by asyncio (GH-116774)

2024-03-20 Thread zooba
https://github.com/python/cpython/commit/fc4599800778f9b130d5e336deadbdeb5bd3e5ee commit: fc4599800778f9b130d5e336deadbdeb5bd3e5ee branch: main author: jkriegshauser committer: zooba date: 2024-03-20T14:33:28Z summary: gh-116773: Ensure overlapped objects on Windows are not deallocated too early

[Python-checkins] gh-117021: Fix integer overflow in PyLong_AsPid() on non-Windows 64-bit platforms (GH-117064)

2024-03-20 Thread serhiy-storchaka
https://github.com/python/cpython/commit/519b2ae22b54760475bbf62b9558d453c703f9c6 commit: 519b2ae22b54760475bbf62b9558d453c703f9c6 branch: main author: Serhiy Storchaka committer: serhiy-storchaka date: 2024-03-20T15:39:53+02:00 summary: gh-117021: Fix integer overflow in PyLong_AsPid() on non-W

[Python-checkins] gh-94808: add tests covering `PyFunction_{Get,Set}Closure` (GH-99429)

2024-03-20 Thread encukou
https://github.com/python/cpython/commit/8182319de33a9519a2f243ac8c35a20ef82a4d2d commit: 8182319de33a9519a2f243ac8c35a20ef82a4d2d branch: main author: Nikita Sobolev committer: encukou date: 2024-03-20T11:43:20+01:00 summary: gh-94808: add tests covering `PyFunction_{Get,Set}Closure` (GH-99429)

[Python-checkins] GH-108362: Incremental Cycle GC (GH-116206)

2024-03-20 Thread markshannon
https://github.com/python/cpython/commit/15309329b65a285cb7b3071f0f08ac964b61411b commit: 15309329b65a285cb7b3071f0f08ac964b61411b branch: main author: Mark Shannon committer: markshannon date: 2024-03-20T08:54:42Z summary: GH-108362: Incremental Cycle GC (GH-116206) files: A Misc/NEWS.d/next/C