[Python-checkins] GH-117881: fix athrow().throw()/asend().throw() concurrent access (GH-117882)

2024-04-30 Thread encukou
https://github.com/python/cpython/commit/fc7e1aa3c001bbce25973261fba457035719a559 commit: fc7e1aa3c001bbce25973261fba457035719a559 branch: main author: Thomas Grainger committer: encukou date: 2024-05-01T08:44:01+02:00 summary: GH-117881: fix athrow().throw()/asend().throw() concurrent access (G

[Python-checkins] gh-116622: Add Android testbed (GH-117878)

2024-04-30 Thread encukou
https://github.com/python/cpython/commit/2520eed0a529be3815f70c43e1a5006d5596 commit: 2520eed0a529be3815f70c43e1a5006d5596 branch: main author: Malcolm Smith committer: encukou date: 2024-05-01T08:36:45+02:00 summary: gh-116622: Add Android testbed (GH-117878) Add code and config for a

[Python-checkins] gh-118201: Accomodate flaky behavior of `os.sysconf` on iOS (GH-118453)

2024-04-30 Thread ned-deily
https://github.com/python/cpython/commit/21336aa12762ffe33bac83c7bd7992fcf42eee10 commit: 21336aa12762ffe33bac83c7bd7992fcf42eee10 branch: main author: Russell Keith-Magee committer: ned-deily date: 2024-04-30T22:31:00-04:00 summary: gh-118201: Accomodate flaky behavior of `os.sysconf` on iOS (G

[Python-checkins] gh-118335: Configure Tier 2 interpreter at build time (#118339)

2024-04-30 Thread gvanrossum
https://github.com/python/cpython/commit/7d83f7bcc484145596bae1ff015fed0762da345d commit: 7d83f7bcc484145596bae1ff015fed0762da345d branch: main author: Guido van Rossum committer: gvanrossum date: 2024-04-30T18:26:34-07:00 summary: gh-118335: Configure Tier 2 interpreter at build time (#118339)

[Python-checkins] gh-118201 - Disable the flaky POSIX test_confstr test on iOS (GH-118452)

2024-04-30 Thread ned-deily
https://github.com/python/cpython/commit/9c468e2c5dffb6fa9811fd16e70fa0463bdfce5f commit: 9c468e2c5dffb6fa9811fd16e70fa0463bdfce5f branch: main author: Russell Keith-Magee committer: ned-deily date: 2024-04-30T19:32:37-04:00 summary: gh-118201 - Disable the flaky POSIX test_confstr test on iOS (

[Python-checkins] gh-117657: Don't specialize RESUME_CHECK when specialization is disabled (GH-118349)

2024-04-30 Thread Fidget-Spinner
https://github.com/python/cpython/commit/7fabcc727dee52a3e0dfe4f903ad414e93cf2dc9 commit: 7fabcc727dee52a3e0dfe4f903ad414e93cf2dc9 branch: main author: Ken Jin committer: Fidget-Spinner date: 2024-04-30T21:51:59Z summary: gh-117657: Don't specialize RESUME_CHECK when specialization is disabled

[Python-checkins] gh-117139: Add header for tagged pointers (GH-118330)

2024-04-30 Thread Fidget-Spinner
https://github.com/python/cpython/commit/dc6b12d1b2ea26bb0323d932fa7b1a337eaca562 commit: dc6b12d1b2ea26bb0323d932fa7b1a337eaca562 branch: main author: Ken Jin committer: Fidget-Spinner date: 2024-05-01T04:46:13+08:00 summary: gh-117139: Add header for tagged pointers (GH-118330) - C

[Python-checkins] gh-118422: Fix run_fileexflags() test (#118429)

2024-04-30 Thread vstinner
https://github.com/python/cpython/commit/e93c39b47ea623dfaf61f80775ad4747b163efe5 commit: e93c39b47ea623dfaf61f80775ad4747b163efe5 branch: main author: Victor Stinner committer: vstinner date: 2024-04-30T22:32:55+02:00 summary: gh-118422: Fix run_fileexflags() test (#118429) Don't test the unde

[Python-checkins] gh-118124: Use static_assert() in Py_BUILD_ASSERT() on C11 (#118398)

2024-04-30 Thread vstinner
https://github.com/python/cpython/commit/587388ff22dc7cfa4b66722daf0d33cd804af9f2 commit: 587388ff22dc7cfa4b66722daf0d33cd804af9f2 branch: main author: Victor Stinner committer: vstinner date: 2024-04-30T22:29:48+02:00 summary: gh-118124: Use static_assert() in Py_BUILD_ASSERT() on C11 (#118398)

[Python-checkins] gh-118218: Reuse return tuple in itertools.pairwise (GH-118219)

2024-04-30 Thread serhiy-storchaka
https://github.com/python/cpython/commit/6999d68d2878871493d85dc63599f3d44eada104 commit: 6999d68d2878871493d85dc63599f3d44eada104 branch: main author: Shantanu <[email protected]> committer: serhiy-storchaka date: 2024-04-30T23:16:52+03:00 summary: gh-118218: Reuse r

[Python-checkins] gh-118406: Add signature for sqlite3.Connection objects (#118428)

2024-04-30 Thread erlend-aasland
https://github.com/python/cpython/commit/b568c2c1ff5c0b1922a6402dc95c588d7f9aa914 commit: b568c2c1ff5c0b1922a6402dc95c588d7f9aa914 branch: main author: Erlend E. Aasland committer: erlend-aasland date: 2024-04-30T19:58:22Z summary: gh-118406: Add signature for sqlite3.Connection objects (#118428

[Python-checkins] [gh-117657] Fix some issues with TSAN in typeobject (#118249)

2024-04-30 Thread DinoV
https://github.com/python/cpython/commit/19d468a3ab1d57c07a4283d67d439908574aa0cc commit: 19d468a3ab1d57c07a4283d67d439908574aa0cc branch: main author: Dino Viehland committer: DinoV date: 2024-04-30T12:37:38-07:00 summary: [gh-117657] Fix some issues with TSAN in typeobject (#118249) Fix some

[Python-checkins] gh-118332: Fix deadlock involving stop the world (#118412)

2024-04-30 Thread colesbury
https://github.com/python/cpython/commit/b2c3b70c7102197e4505e6cd69722dc508527d22 commit: b2c3b70c7102197e4505e6cd69722dc508527d22 branch: main author: Sam Gross committer: colesbury date: 2024-04-30T15:01:28-04:00 summary: gh-118332: Fix deadlock involving stop the world (#118412) Avoid detach

[Python-checkins] gh-117657: Fix small issues with instrumentation and TSAN (#118064)

2024-04-30 Thread DinoV
https://github.com/python/cpython/commit/4a1cf66c5c0afa36d7a51d5f9d3874cda10df79c commit: 4a1cf66c5c0afa36d7a51d5f9d3874cda10df79c branch: main author: Dino Viehland committer: DinoV date: 2024-04-30T11:38:05-07:00 summary: gh-117657: Fix small issues with instrumentation and TSAN (#118064) Sma

[Python-checkins] gh-118272: Clear generator frame's locals when the generator is closed (#118277)

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

[Python-checkins] gh-109975: Document crypt_r as a possible replacement of crypt (#118439)

2024-04-30 Thread hugovk
https://github.com/python/cpython/commit/f7747f73a9d9b9b1661c1a69cd8d934d56bbd3b3 commit: f7747f73a9d9b9b1661c1a69cd8d934d56bbd3b3 branch: main author: Miro HronĨok committer: hugovk <[email protected]> date: 2024-04-30T21:25:25+03:00 summary: gh-109975: Document crypt_r as

[Python-checkins] gh-117618: Make package.module searchable for breakpoints and clean up docs (#117619)

2024-04-30 Thread iritkatriel
https://github.com/python/cpython/commit/d7ac427a796a3f869b813dac37b030889b56cd3b commit: d7ac427a796a3f869b813dac37b030889b56cd3b branch: main author: Tian Gao committer: iritkatriel <[email protected]> date: 2024-04-30T18:18:01Z summary: gh-117618: Make package.module

[Python-checkins] [3.12] gh-118418: Use a default value for `type_params` in `typing._eval_type` (GH-118431) (#118436)

2024-04-30 Thread AlexWaygood
https://github.com/python/cpython/commit/0586d5424133af3f1ed61438017393e52eadb51b commit: 0586d5424133af3f1ed61438017393e52eadb51b branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: AlexWaygood date: 2024-04-30T16:26:38Z summary: [3.12] gh-1184

[Python-checkins] gh-118418: Use a default value for `type_params` in `typing._eval_type` (#118431)

2024-04-30 Thread AlexWaygood
https://github.com/python/cpython/commit/4a5ad8469af9a6fc0ec1355eb203cc22bb4321d5 commit: 4a5ad8469af9a6fc0ec1355eb203cc22bb4321d5 branch: main author: Nikita Sobolev committer: AlexWaygood date: 2024-04-30T15:44:37Z summary: gh-118418: Use a default value for `type_params` in `typing._eval_type

[Python-checkins] gh-116122: Add SBOM generation to PCbuild/build.bat (GH-116138)

2024-04-30 Thread zooba
https://github.com/python/cpython/commit/72dae53e09a5344bf4922d934a34a2fa48a11c86 commit: 72dae53e09a5344bf4922d934a34a2fa48a11c86 branch: main author: Seth Michael Larson committer: zooba date: 2024-04-30T16:05:05+01:00 summary: gh-116122: Add SBOM generation to PCbuild/build.bat (GH-116138) f

[Python-checkins] gh-118379: Use PyTuple_Pack instead of Py_BuildValue if possible (GH-118381)

2024-04-30 Thread serhiy-storchaka
https://github.com/python/cpython/commit/9a75d56d5d9fdffb6ce9d83ede98486df238102d commit: 9a75d56d5d9fdffb6ce9d83ede98486df238102d branch: main author: Nice Zombies committer: serhiy-storchaka date: 2024-04-30T17:55:15+03:00 summary: gh-118379: Use PyTuple_Pack instead of Py_BuildValue if possib

[Python-checkins] [3.12] gh-117860: Add tests for resolving names when import rebind names (GH-118176) (GH-118432)

2024-04-30 Thread serhiy-storchaka
https://github.com/python/cpython/commit/a030bae58498aa9e1bdecc355638383a109168bd commit: a030bae58498aa9e1bdecc355638383a109168bd branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: serhiy-storchaka date: 2024-04-30T14:52:44Z summary: [3.12] gh

[Python-checkins] gh-118402: Fix inspect.signature() for functools.cmp_to_key() result (GH-118427)

2024-04-30 Thread serhiy-storchaka
https://github.com/python/cpython/commit/17a8af9508d6001e1666de984e2fb73f02167306 commit: 17a8af9508d6001e1666de984e2fb73f02167306 branch: main author: Serhiy Storchaka committer: serhiy-storchaka date: 2024-04-30T17:49:28+03:00 summary: gh-118402: Fix inspect.signature() for functools.cmp_to_ke

[Python-checkins] gh-102402: Make test_relativeCreated_has_higher_precision less implementation dependent (GH-118062)

2024-04-30 Thread serhiy-storchaka
https://github.com/python/cpython/commit/02887c6428042832f17fd71ed90619f25d8f951d commit: 02887c6428042832f17fd71ed90619f25d8f951d branch: main author: Serhiy Storchaka committer: serhiy-storchaka date: 2024-04-30T17:35:19+03:00 summary: gh-102402: Make test_relativeCreated_has_higher_precision

[Python-checkins] gh-117860: Add tests for resolving names when import rebind names (GH-118176)

2024-04-30 Thread serhiy-storchaka
https://github.com/python/cpython/commit/c0eaa232f63a62e0e0408911ab5f118dca2af607 commit: c0eaa232f63a62e0e0408911ab5f118dca2af607 branch: main author: Serhiy Storchaka committer: serhiy-storchaka date: 2024-04-30T17:23:44+03:00 summary: gh-117860: Add tests for resolving names when import rebin

[Python-checkins] gh-116622: Redirect stdout and stderr to system log when embedded in an Android app (#118063)

2024-04-30 Thread vstinner
https://github.com/python/cpython/commit/3b268f4edc02b22257d745363b5cae199b6e5720 commit: 3b268f4edc02b22257d745363b5cae199b6e5720 branch: main author: Malcolm Smith committer: vstinner date: 2024-04-30T16:00:31+02:00 summary: gh-116622: Redirect stdout and stderr to system log when embedded in

[Python-checkins] [3.12] gh-118404: Fix inspect.signature() for non-comparable callables (GH-118405) (GH-118424)

2024-04-30 Thread serhiy-storchaka
https://github.com/python/cpython/commit/1b12ad59703b49a9240cbe037abe3d1c2f550877 commit: 1b12ad59703b49a9240cbe037abe3d1c2f550877 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: serhiy-storchaka date: 2024-04-30T12:33:54Z summary: [3.12] gh

[Python-checkins] gh-118404: Fix inspect.signature() for non-comparable callables (GH-118405)

2024-04-30 Thread serhiy-storchaka
https://github.com/python/cpython/commit/11f8348d78c22f85694d7a424541b34d6054a8ee commit: 11f8348d78c22f85694d7a424541b34d6054a8ee branch: main author: Serhiy Storchaka committer: serhiy-storchaka date: 2024-04-30T15:04:16+03:00 summary: gh-118404: Fix inspect.signature() for non-comparable call

[Python-checkins] GH-118095: Add tier 2 support for YIELD_VALUE (GH-118380)

2024-04-30 Thread markshannon
https://github.com/python/cpython/commit/5b05d452cd20d9f0cfecdeec90adad3af5e4dfff commit: 5b05d452cd20d9f0cfecdeec90adad3af5e4dfff branch: main author: Mark Shannon committer: markshannon date: 2024-04-30T11:33:13+01:00 summary: GH-118095: Add tier 2 support for YIELD_VALUE (GH-118380) files: M

[Python-checkins] [3.12] gh-85453: Consistent backquotes on None occurences across datetime.rst (GH-118282) (#118419)

2024-04-30 Thread erlend-aasland
https://github.com/python/cpython/commit/668163865c96ae141761b23895e128c8f7a9f29a commit: 668163865c96ae141761b23895e128c8f7a9f29a branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: erlend-aasland date: 2024-04-30T10:44:23+02:00 summary: [3.12]

[Python-checkins] gh-85453: Consistent backquotes on None occurences across datetime.rst (#118282)

2024-04-30 Thread erlend-aasland
https://github.com/python/cpython/commit/0f797402bc77192c76a952410ca8e17359feab3c commit: 0f797402bc77192c76a952410ca8e17359feab3c branch: main author: edson duarte committer: erlend-aasland date: 2024-04-30T10:34:15+02:00 summary: gh-85453: Consistent backquotes on None occurences across dateti