[Python-checkins] GH-117457: Correct pystats uop "miss" counts (GH-117477)

2024-04-04 Thread brandtbucher
https://github.com/python/cpython/commit/0edde64a41c2c3eeb4fd495efe7fff3d631cae4b commit: 0edde64a41c2c3eeb4fd495efe7fff3d631cae4b branch: main author: Michael Droettboom committer: brandtbucher date: 2024-04-04T15:49:18-07:00 summary: GH-117457: Correct pystats uop "miss" counts (GH-117477) fi

[Python-checkins] gh-117549: Match declaration order for _Py_BackoffCounter initializer (#117551)

2024-04-04 Thread gvanrossum
https://github.com/python/cpython/commit/b5e60918afa53dfd59ad26a9f4b5207a9b304bc1 commit: b5e60918afa53dfd59ad26a9f4b5207a9b304bc1 branch: main author: Michael Droettboom committer: gvanrossum date: 2024-04-04T14:14:35-07:00 summary: gh-117549: Match declaration order for _Py_BackoffCounter init

[Python-checkins] gh-117474: Skip GIL test in free-threaded build (#117475)

2024-04-04 Thread colesbury
https://github.com/python/cpython/commit/63998a1347f3970ea4c69c881db69fc72b16a54c commit: 63998a1347f3970ea4c69c881db69fc72b16a54c branch: main author: Sam Gross committer: colesbury date: 2024-04-04T16:27:14-04:00 summary: gh-117474: Skip GIL test in free-threaded build (#117475) In the free-t

[Python-checkins] gh-112075: Make _PyDict_LoadGlobal thread safe (#117529)

2024-04-04 Thread DinoV
https://github.com/python/cpython/commit/434bc593df4c0274b8afd3c1dcdc9234f469d9bf commit: 434bc593df4c0274b8afd3c1dcdc9234f469d9bf branch: main author: Dino Viehland committer: DinoV date: 2024-04-04T12:26:07-07:00 summary: gh-112075: Make _PyDict_LoadGlobal thread safe (#117529) Make _PyDict_L

[Python-checkins] gh-117478: Add `@support.requires_gil_enabled` decorator (#117479)

2024-04-04 Thread colesbury
https://github.com/python/cpython/commit/42205143f8b3211d1392f1d9f2cf6717bdaa5b47 commit: 42205143f8b3211d1392f1d9f2cf6717bdaa5b47 branch: main author: Sam Gross committer: colesbury date: 2024-04-04T14:10:46-04:00 summary: gh-117478: Add `@support.requires_gil_enabled` decorator (#117479) Co-a

[Python-checkins] gh-117435: Make `SemLock` thread-safe in free-threaded build (#117436)

2024-04-04 Thread colesbury
https://github.com/python/cpython/commit/de5ca0bf71760aad8f2b8449c89242498bff64c8 commit: de5ca0bf71760aad8f2b8449c89242498bff64c8 branch: main author: Sam Gross committer: colesbury date: 2024-04-04T14:09:38-04:00 summary: gh-117435: Make `SemLock` thread-safe in free-threaded build (#117436)

[Python-checkins] gh-117494: extract the Instruction Sequence data structure into a separate file (#117496)

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

[Python-checkins] gh-116968: Reimplement Tier 2 counters (#117144)

2024-04-04 Thread gvanrossum
https://github.com/python/cpython/commit/060a96f1a9a901b01ed304aa82b886d248ca1cb6 commit: 060a96f1a9a901b01ed304aa82b886d248ca1cb6 branch: main author: Guido van Rossum committer: gvanrossum date: 2024-04-04T15:03:27Z summary: gh-116968: Reimplement Tier 2 counters (#117144) Introduce a unified

[Python-checkins] gh-109802: Add coverage test for complex_abs() (GH-117449)

2024-04-04 Thread encukou
https://github.com/python/cpython/commit/63bbe77d9bb2be4db83ed09b96dd22f2a44ef55b commit: 63bbe77d9bb2be4db83ed09b96dd22f2a44ef55b branch: main author: Sergey B Kirpichev committer: encukou date: 2024-04-04T14:54:17Z summary: gh-109802: Add coverage test for complex_abs() (GH-117449) * gh-10980

[Python-checkins] [3.12] [doc] Update logging documentation to improve grammar and elucidate an example. (GH-117541) (GH-117542)

2024-04-04 Thread vsajip
https://github.com/python/cpython/commit/663e7bc2eed89c72e795d7b855c7ff283c0264c1 commit: 663e7bc2eed89c72e795d7b855c7ff283c0264c1 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: vsajip date: 2024-04-04T14:19:10+01:00 summary: [3.12] [doc] U

[Python-checkins] [doc] Update logging documentation to improve grammar and elucidate an example. (GH-117541)

2024-04-04 Thread vsajip
https://github.com/python/cpython/commit/df912c913a3d94995b379f1e19fe0a79acab6169 commit: df912c913a3d94995b379f1e19fe0a79acab6169 branch: main author: Vinay Sajip committer: vsajip date: 2024-04-04T13:14:44+01:00 summary: [doc] Update logging documentation to improve grammar and elucidate an ex

[Python-checkins] [3.12] gh-117521: Improve typing.TypeGuard docstring (GH-117522) (#117538)

2024-04-04 Thread JelleZijlstra
https://github.com/python/cpython/commit/b5e12aa9ff581dd677d9b5f7adeb672cfb52068e commit: b5e12aa9ff581dd677d9b5f7adeb672cfb52068e branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: JelleZijlstra date: 2024-04-04T11:04:16Z summary: [3.12] gh-11

[Python-checkins] [3.12] gh-117467: Add preserving of mailbox owner on flush (GH-117510) (GH-117537)

2024-04-04 Thread serhiy-storchaka
https://github.com/python/cpython/commit/14aef56ebbf3788e60427a9bfbd6de4713967ca0 commit: 14aef56ebbf3788e60427a9bfbd6de4713967ca0 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: serhiy-storchaka date: 2024-04-04T10:55:42Z summary: [3.12] gh

[Python-checkins] gh-117521: Improve typing.TypeGuard docstring (#117522)

2024-04-04 Thread JelleZijlstra
https://github.com/python/cpython/commit/b32789ccb91bbe43e88193f68b1364a8da6d9866 commit: b32789ccb91bbe43e88193f68b1364a8da6d9866 branch: main author: Jelle Zijlstra committer: JelleZijlstra date: 2024-04-04T06:39:16-04:00 summary: gh-117521: Improve typing.TypeGuard docstring (#117522) files:

[Python-checkins] gh-117467: Add preserving of mailbox owner on flush (GH-117510)

2024-04-04 Thread serhiy-storchaka
https://github.com/python/cpython/commit/3f5bcc86d0764b691087e8412941e947554c93fd commit: 3f5bcc86d0764b691087e8412941e947554c93fd branch: main author: Tony Mountifield committer: serhiy-storchaka date: 2024-04-04T13:32:53+03:00 summary: gh-117467: Add preserving of mailbox owner on flush (GH-11