[Python-checkins] [3.13] gh-120225: fix crash in compiler on empty block at end of exception handler (GH-120235) (#120249)

2024-06-07 Thread iritkatriel
https://github.com/python/cpython/commit/3be7e91d037059dd98c175f48620191b538b9731 commit: 3be7e91d037059dd98c175f48620191b538b9731 branch: 3.13 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: iritkatriel <1055913+iritkatr...@users.noreply.github.com> date:

[Python-checkins] gh-120225: fix crash in compiler on empty block at end of exception handler (#120235)

2024-06-07 Thread iritkatriel
https://github.com/python/cpython/commit/4fc82b6d3b99f873179937215833e7a573ca7876 commit: 4fc82b6d3b99f873179937215833e7a573ca7876 branch: main author: Irit Katriel <1055913+iritkatr...@users.noreply.github.com> committer: iritkatriel <1055913+iritkatr...@users.noreply.github.com> date: 2024-06-07T

[Python-checkins] gh-119659: Get the datetime CAPI Tests Running Again (gh-120180)

2024-06-07 Thread ericsnowcurrently
https://github.com/python/cpython/commit/e6076d1e1303c3cc14bc02baf607535af2cf1501 commit: e6076d1e1303c3cc14bc02baf607535af2cf1501 branch: main author: Eric Snow committer: ericsnowcurrently date: 2024-06-07T11:44:56-06:00 summary: gh-119659: Get the datetime CAPI Tests Running Again (gh-120180)

[Python-checkins] GH-116380: Move pathlib-specific code from `glob` to `pathlib._abc`. (#120011)

2024-06-07 Thread barneygale
https://github.com/python/cpython/commit/242c7498e5a889b47847fb6f0f133ce461fa7e24 commit: 242c7498e5a889b47847fb6f0f133ce461fa7e24 branch: main author: Barney Gale committer: barneygale date: 2024-06-07T17:59:34+01:00 summary: GH-116380: Move pathlib-specific code from `glob` to `pathlib._abc`.

[Python-checkins] [3.12] gh-120200: Fix `inspect.iscoroutinefunction(inspect) is True` corner case (GH-120214) (#120239)

2024-06-07 Thread sobolevn
https://github.com/python/cpython/commit/1e7903d549716eb8034167302d4a718e42460b4b commit: 1e7903d549716eb8034167302d4a718e42460b4b branch: 3.12 author: Nikita Sobolev committer: sobolevn date: 2024-06-07T16:41:45Z summary: [3.12] gh-120200: Fix `inspect.iscoroutinefunction(inspect) is True` corn

[Python-checkins] [3.13] gh-120200: Fix `inspect.iscoroutinefunction(inspect) is True` corner case (GH-120214) (#120237)

2024-06-07 Thread sobolevn
https://github.com/python/cpython/commit/6238174e47a046dd6feb09ef4dd1bb55605ea0ad commit: 6238174e47a046dd6feb09ef4dd1bb55605ea0ad branch: 3.13 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: sobolevn date: 2024-06-07T19:26:30+03:00 summary: [3.13] gh-12

[Python-checkins] [3.12] gh-120155: Fix copy/paste error in HAVE_SUBOFFSETS_IN_LAST_DIM() (GH-120228) (#120240)

2024-06-07 Thread vstinner
https://github.com/python/cpython/commit/ec7c9d330f23c99559a7f8575bf27dbdb5c4d05d commit: ec7c9d330f23c99559a7f8575bf27dbdb5c4d05d branch: 3.12 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: vstinner date: 2024-06-07T16:26:03Z summary: [3.12] gh-120155:

[Python-checkins] [3.13] gh-120155: Fix copy/paste error in HAVE_SUBOFFSETS_IN_LAST_DIM() (GH-120228) (#120238)

2024-06-07 Thread vstinner
https://github.com/python/cpython/commit/afef6b57376af65ec43ba7ffb8c6f41986afe04b commit: afef6b57376af65ec43ba7ffb8c6f41986afe04b branch: 3.13 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: vstinner date: 2024-06-07T16:23:34Z summary: [3.13] gh-120155:

[Python-checkins] [3.13] gh-94808: Add test coverage for "starred kind" in _PyPegen_set_expr_context (GH-119222) (GH-119263)

2024-06-07 Thread encukou
https://github.com/python/cpython/commit/18359f202de00d7fabf27605528c77a619b7b13d commit: 18359f202de00d7fabf27605528c77a619b7b13d branch: 3.13 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: encukou date: 2024-06-07T16:11:20Z summary: [3.13] gh-94808: A

[Python-checkins] gh-120155: Fix copy/paste error in HAVE_SUBOFFSETS_IN_LAST_DIM() (#120228)

2024-06-07 Thread vstinner
https://github.com/python/cpython/commit/90b75405260467814c93738a3325645918d4ea51 commit: 90b75405260467814c93738a3325645918d4ea51 branch: main author: Victor Stinner committer: vstinner date: 2024-06-07T17:58:21+02:00 summary: gh-120155: Fix copy/paste error in HAVE_SUBOFFSETS_IN_LAST_DIM() (#1

[Python-checkins] gh-120226: Fix test_sendfile_close_peer_in_the_middle_of_receiving on Linux >= 6.10 (#120227)

2024-06-07 Thread gvanrossum
https://github.com/python/cpython/commit/a7584245661102a5768c643fbd7db8395fd3c90e commit: a7584245661102a5768c643fbd7db8395fd3c90e branch: main author: Xi Ruoyao committer: gvanrossum date: 2024-06-07T08:51:32-07:00 summary: gh-120226: Fix test_sendfile_close_peer_in_the_middle_of_receiving on L

[Python-checkins] gh-120200: Fix `inspect.iscoroutinefunction(inspect) is True` corner case (#120214)

2024-06-07 Thread sobolevn
https://github.com/python/cpython/commit/10fb1b8f36ab2fc3d2fe7392d5735dd19c5e2365 commit: 10fb1b8f36ab2fc3d2fe7392d5735dd19c5e2365 branch: main author: Nikita Sobolev committer: sobolevn date: 2024-06-07T18:48:31+03:00 summary: gh-120200: Fix `inspect.iscoroutinefunction(inspect) is True` corner

[Python-checkins] gh-114264: Optimize performance of copy.deepcopy by adding a fast path for atomic types (GH-114266)

2024-06-07 Thread serhiy-storchaka
https://github.com/python/cpython/commit/9d6604222e9ef4e136ee9ccfa2d4d5ff9feee976 commit: 9d6604222e9ef4e136ee9ccfa2d4d5ff9feee976 branch: main author: Pieter Eendebak committer: serhiy-storchaka date: 2024-06-07T18:42:01+03:00 summary: gh-114264: Optimize performance of copy.deepcopy by adding

[Python-checkins] [3.12] gh-120155: Fix optimize_and_assemble_code_unit() error handling (#120231)

2024-06-07 Thread vstinner
https://github.com/python/cpython/commit/b3b5278475b31713fa86eaddfcbf4f22859ce59b commit: b3b5278475b31713fa86eaddfcbf4f22859ce59b branch: 3.12 author: Victor Stinner committer: vstinner date: 2024-06-07T17:17:06+02:00 summary: [3.12] gh-120155: Fix optimize_and_assemble_code_unit() error handli

[Python-checkins] [3.13] gh-120211: Fix tkinter.ttk with Tcl/Tk 9.0 (GH-120213) (GH-120215)

2024-06-07 Thread serhiy-storchaka
https://github.com/python/cpython/commit/8368b67d1b5db48807010936d9550e762fc8630d commit: 8368b67d1b5db48807010936d9550e762fc8630d branch: 3.13 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: serhiy-storchaka date: 2024-06-07T15:00:30Z summary: [3.13] gh

[Python-checkins] [3.13] gh-110383: Improve 'old string formatting' text in tutorial (GH-120219) (#120229)

2024-06-07 Thread erlend-aasland
https://github.com/python/cpython/commit/a2003bd195738c530e576dcd34c06fa10b6b5be8 commit: a2003bd195738c530e576dcd34c06fa10b6b5be8 branch: 3.13 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: erlend-aasland date: 2024-06-07T13:53:35Z summary: [3.13] gh-1

[Python-checkins] [3.12] gh-110383: Improve 'old string formatting' text in tutorial (GH-120219) (#120230)

2024-06-07 Thread erlend-aasland
https://github.com/python/cpython/commit/9cdf69607593e05ca425c94a0d21efe668ac3875 commit: 9cdf69607593e05ca425c94a0d21efe668ac3875 branch: 3.12 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: erlend-aasland date: 2024-06-07T13:43:59Z summary: [3.12] gh-1

[Python-checkins] gh-110383: Improve 'old string formatting' text in tutorial (#120219)

2024-06-07 Thread erlend-aasland
https://github.com/python/cpython/commit/225aab7f70d804174cc3a75bc04a5bb1545e5adb commit: 225aab7f70d804174cc3a75bc04a5bb1545e5adb branch: main author: Erlend E. Aasland committer: erlend-aasland date: 2024-06-07T15:37:18+02:00 summary: gh-110383: Improve 'old string formatting' text in tutorial

[Python-checkins] gh-93691: fix too broad source locations of with-statement instructions (#120125)

2024-06-07 Thread iritkatriel
https://github.com/python/cpython/commit/eca3f7762c23b22a73a5e0b09520748c88aab4a0 commit: eca3f7762c23b22a73a5e0b09520748c88aab4a0 branch: main author: Irit Katriel <1055913+iritkatr...@users.noreply.github.com> committer: iritkatriel <1055913+iritkatr...@users.noreply.github.com> date: 2024-06-07T

[Python-checkins] [3.12] gh-120211: Fix tkinter.ttk with Tcl/Tk 9.0 (GH-120213) (GH-120216)

2024-06-07 Thread serhiy-storchaka
https://github.com/python/cpython/commit/ac68d83fec222ba1bccf76d76f2f70bc1da77907 commit: ac68d83fec222ba1bccf76d76f2f70bc1da77907 branch: 3.12 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: serhiy-storchaka date: 2024-06-07T14:30:50+03:00 summary: [3.1

[Python-checkins] gh-120211: Fix tkinter.ttk with Tcl/Tk 9.0 (GH-120213)

2024-06-07 Thread serhiy-storchaka
https://github.com/python/cpython/commit/d68a22e7a68ae09f7db61d5a1a3bd9c0360cf3ee commit: d68a22e7a68ae09f7db61d5a1a3bd9c0360cf3ee branch: main author: Serhiy Storchaka committer: serhiy-storchaka date: 2024-06-07T10:49:07Z summary: gh-120211: Fix tkinter.ttk with Tcl/Tk 9.0 (GH-120213) * Use n

[Python-checkins] [3.12] gh-112672: Fix builtin Tkinter with Tcl 9.0 (GH-112681) (GH-120209)

2024-06-07 Thread serhiy-storchaka
https://github.com/python/cpython/commit/ec139c8fae2064e5f1413dad0aadc1b83daf90d8 commit: ec139c8fae2064e5f1413dad0aadc1b83daf90d8 branch: 3.12 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: serhiy-storchaka date: 2024-06-07T10:18:42Z summary: [3.12] gh

[Python-checkins] [3.13] gh-112672: Fix builtin Tkinter with Tcl 9.0 (GH-112681) (GH-120208)

2024-06-07 Thread serhiy-storchaka
https://github.com/python/cpython/commit/f0165d00b758eace636c3ede8c1cfe0410e7f47c commit: f0165d00b758eace636c3ede8c1cfe0410e7f47c branch: 3.13 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: serhiy-storchaka date: 2024-06-07T10:12:31Z summary: [3.13] gh

[Python-checkins] [3.13] gh-110383: Clarify "non-integral" wording in pow() docs (GH-119688) (#120206)

2024-06-07 Thread erlend-aasland
https://github.com/python/cpython/commit/ffa7d82a04254491b91f41cc0de04b490bab1dc6 commit: ffa7d82a04254491b91f41cc0de04b490bab1dc6 branch: 3.13 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: erlend-aasland date: 2024-06-07T10:03:06Z summary: [3.13] gh-1

[Python-checkins] [3.12] gh-110383: Clarify "non-integral" wording in pow() docs (GH-119688) (#120207)

2024-06-07 Thread erlend-aasland
https://github.com/python/cpython/commit/501cd99c8e54e70fad80fb3b201647b3d0860b09 commit: 501cd99c8e54e70fad80fb3b201647b3d0860b09 branch: 3.12 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: erlend-aasland date: 2024-06-07T09:53:55Z summary: [3.12] gh-1

[Python-checkins] [3.12] gh-120154: Fix Emscripten/WASI pattern in case statement for LDSHARED… (#120204)

2024-06-07 Thread vstinner
https://github.com/python/cpython/commit/315611aac8383e071bed4eadf4a090164a4d0ea1 commit: 315611aac8383e071bed4eadf4a090164a4d0ea1 branch: 3.12 author: Victor Stinner committer: vstinner date: 2024-06-07T09:49:54Z summary: [3.12] gh-120154: Fix Emscripten/WASI pattern in case statement for LDSHA

[Python-checkins] gh-110383: Clarify "non-integral" wording in pow() docs (#119688)

2024-06-07 Thread erlend-aasland
https://github.com/python/cpython/commit/6646a9da26d12fc54263b22dd2916a2f710f1db7 commit: 6646a9da26d12fc54263b22dd2916a2f710f1db7 branch: main author: Aditya Borikar committer: erlend-aasland date: 2024-06-07T11:44:42+02:00 summary: gh-110383: Clarify "non-integral" wording in pow() docs (#1196

[Python-checkins] [3.13] gh-120164: Fix test_os.test_win32_mkdir_700() (GH-120177) (#120202)

2024-06-07 Thread vstinner
https://github.com/python/cpython/commit/1e43f76b7689536233c018ee51d6d5b9d96cf34f commit: 1e43f76b7689536233c018ee51d6d5b9d96cf34f branch: 3.13 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: vstinner date: 2024-06-07T09:39:56Z summary: [3.13] gh-120164:

[Python-checkins] [3.12] gh-120164: Fix test_os.test_win32_mkdir_700() (GH-120177) (#120203)

2024-06-07 Thread vstinner
https://github.com/python/cpython/commit/3730f60f39371b2ef13e8df6db254f041fea310e commit: 3730f60f39371b2ef13e8df6db254f041fea310e branch: 3.12 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: vstinner date: 2024-06-07T09:35:08Z summary: [3.12] gh-120164:

[Python-checkins] [3.13] gh-120154: Fix Emscripten/WASI pattern in case statement for LDSHARED (GH-120173) (#120199)

2024-06-07 Thread erlend-aasland
https://github.com/python/cpython/commit/eb6a99485fcb264f001a5ac67cc82a6a4ec1f727 commit: eb6a99485fcb264f001a5ac67cc82a6a4ec1f727 branch: 3.13 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: erlend-aasland date: 2024-06-07T09:16:43Z summary: [3.13] gh-1

[Python-checkins] gh-120164: Fix test_os.test_win32_mkdir_700() (#120177)

2024-06-07 Thread vstinner
https://github.com/python/cpython/commit/d5ba4fc9bc9b2d9eff2a90893e8d500e0c367237 commit: d5ba4fc9bc9b2d9eff2a90893e8d500e0c367237 branch: main author: Kirill Podoprigora committer: vstinner date: 2024-06-07T11:14:13+02:00 summary: gh-120164: Fix test_os.test_win32_mkdir_700() (#120177) Don't c

[Python-checkins] gh-120154: Fix Emscripten/WASI pattern in case statement for LDSHARED (#120173)

2024-06-07 Thread vstinner
https://github.com/python/cpython/commit/47816f465e833a5257a82b759b1081e06381e528 commit: 47816f465e833a5257a82b759b1081e06381e528 branch: main author: Michael Allwright committer: vstinner date: 2024-06-07T10:38:15+02:00 summary: gh-120154: Fix Emscripten/WASI pattern in case statement for LDSH

[Python-checkins] Fix typos in comments (#120188)

2024-06-07 Thread vstinner
https://github.com/python/cpython/commit/6a97929a5ad76c55bc6e1cf32898a1c31093334d commit: 6a97929a5ad76c55bc6e1cf32898a1c31093334d branch: main author: Xie Yanbo committer: vstinner date: 2024-06-07T10:19:41+02:00 summary: Fix typos in comments (#120188) files: M Include/ceval.h M Include/cpyth

[Python-checkins] gh-120080: Accept ``None`` as a valid argument for direct call of the ``int.__round__`` (#120088)

2024-06-07 Thread vstinner
https://github.com/python/cpython/commit/57ad769076201c858a768d81047f6ea44925a33b commit: 57ad769076201c858a768d81047f6ea44925a33b branch: main author: Kirill Podoprigora committer: vstinner date: 2024-06-07T10:03:28+02:00 summary: gh-120080: Accept ``None`` as a valid argument for direct call o

[Python-checkins] [3.12] Add Plausible for docs metrics (GH-119977) (#120194)

2024-06-07 Thread hugovk
https://github.com/python/cpython/commit/92a38e98740b244b0b0e79c8d03ea29422a66d0c commit: 92a38e98740b244b0b0e79c8d03ea29422a66d0c branch: 3.12 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: hugovk <1324225+hug...@users.noreply.github.com> date: 2024-06-0

[Python-checkins] [3.13] Add Plausible for docs metrics (GH-119977) (#120193)

2024-06-07 Thread hugovk
https://github.com/python/cpython/commit/0e6605f633f3eee6a4e4b09bbd3cfceb2d80ef48 commit: 0e6605f633f3eee6a4e4b09bbd3cfceb2d80ef48 branch: 3.13 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: hugovk <1324225+hug...@users.noreply.github.com> date: 2024-06-0

[Python-checkins] gh-120157: Remove unused code in concurrent.future (gh-120187)

2024-06-07 Thread corona10
https://github.com/python/cpython/commit/bd826b9c77dbf7c789433cb8061c733c08634c0e commit: bd826b9c77dbf7c789433cb8061c733c08634c0e branch: main author: Clinton committer: corona10 date: 2024-06-07T16:39:19+09:00 summary: gh-120157: Remove unused code in concurrent.future (gh-120187) files: A Mi