[Python-checkins] gh-116303: Explicitly check for the _testsinglephase module in configure.ac (#116479)

2024-03-07 Thread erlend-aasland
https://github.com/python/cpython/commit/d864b0094f9875c5613cbb0b7f7f3ca8f1c6b606 commit: d864b0094f9875c5613cbb0b7f7f3ca8f1c6b606 branch: main author: Erlend E. Aasland committer: erlend-aasland date: 2024-03-07T23:42:43Z summary: gh-116303: Explicitly check for the _testsinglephase module in c

[Python-checkins] [3.12] gh-116040: [Enum] fix by-value calls when second value is falsey (GH-116072) (GH-116476)

2024-03-07 Thread ethanfurman
https://github.com/python/cpython/commit/d771729679d39904768f60b3352e02f5f491966c commit: d771729679d39904768f60b3352e02f5f491966c branch: 3.12 author: Ethan Furman committer: ethanfurman date: 2024-03-07T15:26:13-08:00 summary: [3.12] gh-116040: [Enum] fix by-value calls when second value is fa

[Python-checkins] gh-116472: Replace literal newlines with escape characters in MSBuild files (GH-116473)

2024-03-07 Thread zooba
https://github.com/python/cpython/commit/4efd20e23a1cafe442e663355ca3644c3904c945 commit: 4efd20e23a1cafe442e663355ca3644c3904c945 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: zooba date: 2024-03-07T22:33:19Z summary: gh-116472: Replace l

[Python-checkins] gh-116472: Replace literal newlines with escape characters in MSBuild files (GH-116473)

2024-03-07 Thread zooba
https://github.com/python/cpython/commit/22c38a6f77577fe0018f53242a9d534725eed5ca commit: 22c38a6f77577fe0018f53242a9d534725eed5ca branch: 3.11 author: Miss Islington (bot) <[email protected]> committer: zooba date: 2024-03-07T22:16:32Z summary: gh-116472: Replace l

[Python-checkins] gh-116472: Replace literal newlines with escape characters in MSBuild files (GH-116473)

2024-03-07 Thread zooba
https://github.com/python/cpython/commit/5d0cdfe519e6f35ccae1a1adca1ffd7fac10cee0 commit: 5d0cdfe519e6f35ccae1a1adca1ffd7fac10cee0 branch: main author: Dan Albert committer: zooba date: 2024-03-07T21:53:13Z summary: gh-116472: Replace literal newlines with escape characters in MSBuild files (GH

[Python-checkins] gh-116040: [Enum] fix by-value calls when second value is falsey; e.g. Cardinal(1, 0) (GH-116072)

2024-03-07 Thread ethanfurman
https://github.com/python/cpython/commit/13ffd4bd9f529b6a5fe33741fbd57f14b4b80137 commit: 13ffd4bd9f529b6a5fe33741fbd57f14b4b80137 branch: main author: Ethan Furman committer: ethanfurman date: 2024-03-07T13:30:26-08:00 summary: gh-116040: [Enum] fix by-value calls when second value is falsey; e

[Python-checkins] gh-116000: Make optimizer_generator.py work without any arguments (#116470)

2024-03-07 Thread gvanrossum
https://github.com/python/cpython/commit/b2d74cdbcd0b47bc938200969bb31e5b37dc11e1 commit: b2d74cdbcd0b47bc938200969bb31e5b37dc11e1 branch: main author: Kirill Podoprigora committer: gvanrossum date: 2024-03-07T19:05:50Z summary: gh-116000: Make optimizer_generator.py work without any arguments (

[Python-checkins] gh-116396: Pass "detached_state" argument to tstate_set_detached (#116398)

2024-03-07 Thread colesbury
https://github.com/python/cpython/commit/834bf57eb79e9bf383a7173fccda032f4c53f69b commit: 834bf57eb79e9bf383a7173fccda032f4c53f69b branch: main author: Sam Gross committer: colesbury date: 2024-03-07T13:37:43-05:00 summary: gh-116396: Pass "detached_state" argument to tstate_set_detached (#11639

[Python-checkins] gh-116417: Add _testlimitedcapi C extension (#116419)

2024-03-07 Thread vstinner
https://github.com/python/cpython/commit/d9bcdda39c62a8c37637ecd5f82f83f6e8828243 commit: d9bcdda39c62a8c37637ecd5f82f83f6e8828243 branch: main author: Victor Stinner committer: vstinner date: 2024-03-07T18:31:12Z summary: gh-116417: Add _testlimitedcapi C extension (#116419) Add a new C extens

[Python-checkins] gh-106259: Add minimal help target to Makefile (#106260)

2024-03-07 Thread vstinner
https://github.com/python/cpython/commit/d9ccde28c4321ffc0d3f8b18c6346d075b784c40 commit: d9ccde28c4321ffc0d3f8b18c6346d075b784c40 branch: main author: Skip Montanaro committer: vstinner date: 2024-03-07T18:21:28+01:00 summary: gh-106259: Add minimal help target to Makefile (#106260) Co-authore

[Python-checkins] gh-116381: Remove bad specializations, add fail stats (GH-116464)

2024-03-07 Thread Fidget-Spinner
https://github.com/python/cpython/commit/41457c7fdb04819d04a528b8dfa72c1aa5745cc9 commit: 41457c7fdb04819d04a528b8dfa72c1aa5745cc9 branch: main author: Ken Jin committer: Fidget-Spinner date: 2024-03-08T00:21:21+08:00 summary: gh-116381: Remove bad specializations, add fail stats (GH-116464) *

[Python-checkins] gh-116420: Fix unused var compilation warnings (GH-116466)

2024-03-07 Thread Fidget-Spinner
https://github.com/python/cpython/commit/4298d69d4b2f7d0e9d93ad325238930bd6235dbf commit: 4298d69d4b2f7d0e9d93ad325238930bd6235dbf branch: main author: Ken Jin committer: Fidget-Spinner date: 2024-03-08T00:19:59+08:00 summary: gh-116420: Fix unused var compilation warnings (GH-116466) Fix unuse

[Python-checkins] Parallelize regen-cases (#116446)

2024-03-07 Thread gvanrossum
https://github.com/python/cpython/commit/68157446aa39dedf7c90d85a7b0924beda004e76 commit: 68157446aa39dedf7c90d85a7b0924beda004e76 branch: main author: Guido van Rossum committer: gvanrossum date: 2024-03-07T07:25:24-08:00 summary: Parallelize regen-cases (#116446) This makes a huge difference

[Python-checkins] [3.12] gh-115421: List all test subdirs in Makefile, and test them (GH-115813) (#116462)

2024-03-07 Thread Yhg1s
https://github.com/python/cpython/commit/0ab2384c5f56625e99bb35417cadddfe24d347e1 commit: 0ab2384c5f56625e99bb35417cadddfe24d347e1 branch: 3.12 author: Petr Viktorin committer: Yhg1s date: 2024-03-07T15:55:57+01:00 summary: [3.12] gh-115421: List all test subdirs in Makefile, and test them (GH-1

[Python-checkins] gh-115421: Test that our Makefile has all needed test folders (GH-115813)

2024-03-07 Thread encukou
https://github.com/python/cpython/commit/72dbea28cd3fce6fc457aaec2107a8e453073297 commit: 72dbea28cd3fce6fc457aaec2107a8e453073297 branch: main author: Nikita Sobolev committer: encukou date: 2024-03-07T12:24:38+01:00 summary: gh-115421: Test that our Makefile has all needed test folders (GH-115

[Python-checkins] gh-116437: Use new C API PyDict_Pop() to simplify the code (GH-116438)

2024-03-07 Thread serhiy-storchaka
https://github.com/python/cpython/commit/72d3cc94cd8cae1925e7a14f297b06ac6184f916 commit: 72d3cc94cd8cae1925e7a14f297b06ac6184f916 branch: main author: Serhiy Storchaka committer: serhiy-storchaka date: 2024-03-07T11:21:08+02:00 summary: gh-116437: Use new C API PyDict_Pop() to simplify the code

[Python-checkins] [3.11] gh-116448: Handle errors correctly in `os_waitid_impl` in `posixmodule` (GH-116449) (#116453)

2024-03-07 Thread sobolevn
https://github.com/python/cpython/commit/fa7f278583ddf464025c6fffd0441690ab3a87f7 commit: fa7f278583ddf464025c6fffd0441690ab3a87f7 branch: 3.11 author: Miss Islington (bot) <[email protected]> committer: sobolevn date: 2024-03-07T09:10:08Z summary: [3.11] gh-116448:

[Python-checkins] [3.12] gh-116448: Handle errors correctly in `os_waitid_impl` in `posixmodule` (GH-116449) (#116451)

2024-03-07 Thread sobolevn
https://github.com/python/cpython/commit/cbd94fdb6c3d095730aa1ba691ef490d0a5650f2 commit: cbd94fdb6c3d095730aa1ba691ef490d0a5650f2 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: sobolevn date: 2024-03-07T09:03:28Z summary: [3.12] gh-116448:

[Python-checkins] [3.11] gh-115664: Fix ordering of more versionadded and versionchanged directives (GH-116298) (GH-116450) (GH-116452)

2024-03-07 Thread serhiy-storchaka
https://github.com/python/cpython/commit/e89f2a0be17135e3c99d6bcb2fa8ad40a9f1a639 commit: e89f2a0be17135e3c99d6bcb2fa8ad40a9f1a639 branch: 3.11 author: Serhiy Storchaka committer: serhiy-storchaka date: 2024-03-07T08:35:24Z summary: [3.11] gh-115664: Fix ordering of more versionadded and version

[Python-checkins] gh-116448: Handle errors correctly in `os_waitid_impl` in `posixmodule` (#116449)

2024-03-07 Thread sobolevn
https://github.com/python/cpython/commit/882fcede83af783a834b759e4643130dc1307ee3 commit: 882fcede83af783a834b759e4643130dc1307ee3 branch: main author: Nikita Sobolev committer: sobolevn date: 2024-03-07T08:28:48Z summary: gh-116448: Handle errors correctly in `os_waitid_impl` in `posixmodule`

[Python-checkins] [3.12] gh-115664: Fix ordering of more versionadded and versionchanged directives (GH-116298) (GH-116450)

2024-03-07 Thread serhiy-storchaka
https://github.com/python/cpython/commit/1e75fe146857b5e6624bd3281675cf20cc356273 commit: 1e75fe146857b5e6624bd3281675cf20cc356273 branch: 3.12 author: Serhiy Storchaka committer: serhiy-storchaka date: 2024-03-07T08:21:25Z summary: [3.12] gh-115664: Fix ordering of more versionadded and version

[Python-checkins] gh-115664: Fix ordering of more versionadded and versionchanged directives (GH-116298)

2024-03-07 Thread serhiy-storchaka
https://github.com/python/cpython/commit/808a77612fb89b125d25efac2788522a100e8a6d commit: 808a77612fb89b125d25efac2788522a100e8a6d branch: main author: Serhiy Storchaka committer: serhiy-storchaka date: 2024-03-07T10:05:03+02:00 summary: gh-115664: Fix ordering of more versionadded and versionch