[Python-checkins] Update macOS installer screens and README for 3.13.0b1 (GH-118685)

2024-05-06 Thread ned-deily
https://github.com/python/cpython/commit/698417f2f677b7b9373f8a2f202b6c18870bf3c2 commit: 698417f2f677b7b9373f8a2f202b6c18870bf3c2 branch: main author: Ned Deily committer: ned-deily date: 2024-05-07T00:49:07-04:00 summary: Update macOS installer screens and README for 3.13.0b1 (GH-118685) file

[Python-checkins] gh-118414: Fix assertion in YIELD_VALUE when tracing lines or instrs (#118683)

2024-05-06 Thread gvanrossum
https://github.com/python/cpython/commit/0d9148823dbb6af020945ab1b487d7f183b561a5 commit: 0d9148823dbb6af020945ab1b487d7f183b561a5 branch: main author: Tian Gao committer: gvanrossum date: 2024-05-06T21:22:59-07:00 summary: gh-118414: Fix assertion in YIELD_VALUE when tracing lines or instrs (#1

[Python-checkins] gh-117953: Always Run Extension Init Func in Main Interpreter First (gh-118157)

2024-05-06 Thread ericsnowcurrently
https://github.com/python/cpython/commit/b2cd54a4fb2ecdb7b1d30bda8af3314d3a32031e commit: b2cd54a4fb2ecdb7b1d30bda8af3314d3a32031e branch: main author: Eric Snow committer: ericsnowcurrently date: 2024-05-07T04:21:51Z summary: gh-117953: Always Run Extension Init Func in Main Interpreter First (

[Python-checkins] gh-117953: Imply Single-phase Init if the Init Function Fails (gh-118684)

2024-05-06 Thread ericsnowcurrently
https://github.com/python/cpython/commit/1a23716d4ba6c6dadd76a3662db580f451f660e3 commit: 1a23716d4ba6c6dadd76a3662db580f451f660e3 branch: main author: Eric Snow committer: ericsnowcurrently date: 2024-05-06T21:16:22-06:00 summary: gh-117953: Imply Single-phase Init if the Init Function Fails (g

[Python-checkins] gh-116322: Enable the GIL while loading C extension modules (#118560)

2024-05-06 Thread colesbury
https://github.com/python/cpython/commit/853163d3b5fa56d54a47817642c804b5d0c9f8e5 commit: 853163d3b5fa56d54a47817642c804b5d0c9f8e5 branch: main author: Brett Simmers committer: colesbury date: 2024-05-06T23:07:23-04:00 summary: gh-116322: Enable the GIL while loading C extension modules (#118560

[Python-checkins] Docs: add whatsnew for free-threading (#118679)

2024-05-06 Thread colesbury
https://github.com/python/cpython/commit/60bd1118447e00755320cf8a0f439c827d498b51 commit: 60bd1118447e00755320cf8a0f439c827d498b51 branch: main author: Sam Gross committer: colesbury date: 2024-05-06T21:48:28-04:00 summary: Docs: add whatsnew for free-threading (#118679) Co-authored-by: Łukasz

[Python-checkins] gh-110209: Add __class_getitem__ for generator and coroutine (#110212)

2024-05-06 Thread JelleZijlstra
https://github.com/python/cpython/commit/e7dafdc2240a8e4e45f53782c47120eb3fe37712 commit: e7dafdc2240a8e4e45f53782c47120eb3fe37712 branch: main author: James Hilton-Balfe committer: JelleZijlstra date: 2024-05-06T18:41:32-07:00 summary: gh-110209: Add __class_getitem__ for generator and coroutin

[Python-checkins] GH-116380: Revert move of pathlib globbing code to `pathlib._glob` (#118678)

2024-05-06 Thread barneygale
https://github.com/python/cpython/commit/b4bdf83cc67434235d9630c92c84a5261992b235 commit: b4bdf83cc67434235d9630c92c84a5261992b235 branch: main author: Barney Gale committer: barneygale date: 2024-05-07T00:32:48Z summary: GH-116380: Revert move of pathlib globbing code to `pathlib._glob` (#11867

[Python-checkins] gh-112075: use per-thread dict version pool (#118676)

2024-05-06 Thread DinoV
https://github.com/python/cpython/commit/ff6cbb2503a8fe3fceeadd889e34fc9a8f308ecd commit: ff6cbb2503a8fe3fceeadd889e34fc9a8f308ecd branch: main author: Dino Viehland committer: DinoV date: 2024-05-07T00:22:26Z summary: gh-112075: use per-thread dict version pool (#118676) use thread state set o

[Python-checkins] gh-118527: Intern code consts in free-threaded build (#118667)

2024-05-06 Thread colesbury
https://github.com/python/cpython/commit/723d4d2fe8e77b398f0ccffcfa541149caaac6a1 commit: 723d4d2fe8e77b398f0ccffcfa541149caaac6a1 branch: main author: Sam Gross committer: colesbury date: 2024-05-06T20:12:39-04:00 summary: gh-118527: Intern code consts in free-threaded build (#118667) We alrea

[Python-checkins] gh-118473: Fix set_asyncgen_hooks not to be partially set when arguments are invalid (#118474)

2024-05-06 Thread gvanrossum
https://github.com/python/cpython/commit/8d8275b0cf43f0e20c72a9641cbddc5044cdae04 commit: 8d8275b0cf43f0e20c72a9641cbddc5044cdae04 branch: main author: Jeong, YunWon <[email protected]> committer: gvanrossum date: 2024-05-06T17:02:52-07:00 summary: gh-118473: Fix set_async

[Python-checkins] gh-118362: Skip tests when threading isn't available (#118666)

2024-05-06 Thread DinoV
https://github.com/python/cpython/commit/e272195b3eff3a78e334a601a637d198b8de2319 commit: e272195b3eff3a78e334a601a637d198b8de2319 branch: main author: Dino Viehland committer: DinoV date: 2024-05-06T16:45:04-07:00 summary: gh-118362: Skip tests when threading isn't available (#118666) * Skip t

[Python-checkins] gh-112075: Fix race in constructing dict for instance (#118499)

2024-05-06 Thread ambv
https://github.com/python/cpython/commit/636b8d94c91324c7e49a7cfe914f162690adf488 commit: 636b8d94c91324c7e49a7cfe914f162690adf488 branch: main author: Dino Viehland committer: ambv date: 2024-05-06T23:31:09Z summary: gh-112075: Fix race in constructing dict for instance (#118499) files: A Lib/

[Python-checkins] GH-118251: Bump the JIT CI timeout to 90 minutes (#118661)

2024-05-06 Thread ambv
https://github.com/python/cpython/commit/430945db4c5589197c6d18462e89ca5ae9e38ba6 commit: 430945db4c5589197c6d18462e89ca5ae9e38ba6 branch: main author: Brandt Bucher committer: ambv date: 2024-05-07T01:21:39+02:00 summary: GH-118251: Bump the JIT CI timeout to 90 minutes (#118661) files: M .git

[Python-checkins] gh-117486: Improve behavior for user-defined AST subclasses (#118212)

2024-05-06 Thread JelleZijlstra
https://github.com/python/cpython/commit/e0422198fb4de0a5d81edd3de0d0ed32c119e9bb commit: e0422198fb4de0a5d81edd3de0d0ed32c119e9bb branch: main author: Jelle Zijlstra committer: JelleZijlstra date: 2024-05-06T15:57:27-07:00 summary: gh-117486: Improve behavior for user-defined AST subclasses (#1

[Python-checkins] fix typo in `_pyrepl.pager`: `plainpager` -> `plain_pager` (#118675)

2024-05-06 Thread ambv
https://github.com/python/cpython/commit/040571f258d13a807f5c8e4ce0a182d5f9a2e81b commit: 040571f258d13a807f5c8e4ce0a182d5f9a2e81b branch: main author: denballakh <[email protected]> committer: ambv date: 2024-05-06T22:56:28Z summary: fix typo in `_pyrepl.pager`: `plain

[Python-checkins] Use Intel with 12 cores for free-threading tests for maximum speedup (#118677)

2024-05-06 Thread ambv
https://github.com/python/cpython/commit/5a9eeafa055a8724b1741316cfbd9612825220aa commit: 5a9eeafa055a8724b1741316cfbd9612825220aa branch: main author: Łukasz Langa committer: ambv date: 2024-05-07T00:49:45+02:00 summary: Use Intel with 12 cores for free-threading tests for maximum speedup (#118

[Python-checkins] gh-118647: Add defaults to typing.Generator and typing.AsyncGenerator (#118648)

2024-05-06 Thread JelleZijlstra
https://github.com/python/cpython/commit/8419f01673858d5002747c9393d4ed0ec22fdb47 commit: 8419f01673858d5002747c9393d4ed0ec22fdb47 branch: main author: Jelle Zijlstra committer: JelleZijlstra date: 2024-05-06T22:35:06Z summary: gh-118647: Add defaults to typing.Generator and typing.AsyncGenerato

[Python-checkins] Test premium Mac builders (#118672)

2024-05-06 Thread ambv
https://github.com/python/cpython/commit/9fd33af5ac57f649971ffd8091bd898a96f85b55 commit: 9fd33af5ac57f649971ffd8091bd898a96f85b55 branch: main author: Łukasz Langa committer: ambv date: 2024-05-07T00:08:17+02:00 summary: Test premium Mac builders (#118672) files: M .github/workflows/build.yml

[Python-checkins] gh-118527: Intern code name and filename on default build (#118576)

2024-05-06 Thread colesbury
https://github.com/python/cpython/commit/2ba2c142a615abbd8138d253edfe02426c386961 commit: 2ba2c142a615abbd8138d253edfe02426c386961 branch: main author: Sam Gross committer: colesbury date: 2024-05-06T17:24:14-04:00 summary: gh-118527: Intern code name and filename on default build (#118576) Int

[Python-checkins] GH-115709: Invalidate executors when a local variable is changed via frame.f_locals (#118639)

2024-05-06 Thread gvanrossum
https://github.com/python/cpython/commit/616b745b89a52a1d27123107718f85e65918afdc commit: 616b745b89a52a1d27123107718f85e65918afdc branch: main author: Mark Shannon committer: gvanrossum date: 2024-05-06T21:21:06Z summary: GH-115709: Invalidate executors when a local variable is changed via fra

[Python-checkins] gh-118415: Fix issues with local tracing being enabled/disabled on a function (#118496)

2024-05-06 Thread DinoV
https://github.com/python/cpython/commit/00d913c6718aa365027c6dcf850e8f40731e54fc commit: 00d913c6718aa365027c6dcf850e8f40731e54fc branch: main author: Dino Viehland committer: DinoV date: 2024-05-06T13:06:09-07:00 summary: gh-118415: Fix issues with local tracing being enabled/disabled on a fun

[Python-checkins] [3.12] Expand recipe for kernel density estimation to include common tasks. (gh-118659)

2024-05-06 Thread rhettinger
https://github.com/python/cpython/commit/7b25d945e054bab81215fc2f48fc5c91bc33c412 commit: 7b25d945e054bab81215fc2f48fc5c91bc33c412 branch: 3.12 author: Raymond Hettinger committer: rhettinger date: 2024-05-06T14:51:27-05:00 summary: [3.12] Expand recipe for kernel density estimation to include c

[Python-checkins] gh-118628: Don't display pyrepl warning on Windows (#118665)

2024-05-06 Thread ambv
https://github.com/python/cpython/commit/9bf00322ba09e2439a78fcec77dc6917e1391e31 commit: 9bf00322ba09e2439a78fcec77dc6917e1391e31 branch: main author: Łukasz Langa committer: ambv date: 2024-05-06T19:35:22Z summary: gh-118628: Don't display pyrepl warning on Windows (#118665) files: M Lib/_pyr

[Python-checkins] [3.12] gh-71592: Add ability to trace Tcl commands executed by Tkinter (GH-118291) (GH-118662)

2024-05-06 Thread serhiy-storchaka
https://github.com/python/cpython/commit/bee1c322c0a426b86ba5ed02a71b6c0652e5fac3 commit: bee1c322c0a426b86ba5ed02a71b6c0652e5fac3 branch: 3.12 author: Serhiy Storchaka committer: serhiy-storchaka date: 2024-05-06T19:26:08Z summary: [3.12] gh-71592: Add ability to trace Tcl commands executed by

[Python-checkins] gh-71592: Fix a leak in tkinter.Tk destructor when _debug is true (GH-118664)

2024-05-06 Thread serhiy-storchaka
https://github.com/python/cpython/commit/67ce820d51d7f4bb7068ed560f4f2e2d83dd30d5 commit: 67ce820d51d7f4bb7068ed560f4f2e2d83dd30d5 branch: main author: Serhiy Storchaka committer: serhiy-storchaka date: 2024-05-06T19:25:20Z summary: gh-71592: Fix a leak in tkinter.Tk destructor when _debug is tr

[Python-checkins] gh-115119: Default to --with-system-libmpdec=yes (#118539)

2024-05-06 Thread erlend-aasland
https://github.com/python/cpython/commit/325a1da18d672171e9b9f794c1bfa7b79a7e5e59 commit: 325a1da18d672171e9b9f794c1bfa7b79a7e5e59 branch: main author: Erlend E. Aasland committer: erlend-aasland date: 2024-05-06T21:16:08+02:00 summary: gh-115119: Default to --with-system-libmpdec=yes (#118539)

[Python-checkins] GH-83151: Add closure support to pdb (GH-111094)

2024-05-06 Thread brandtbucher
https://github.com/python/cpython/commit/e5353d49dc53632e694a5df485fafd47f6b98c91 commit: e5353d49dc53632e694a5df485fafd47f6b98c91 branch: main author: Tian Gao committer: brandtbucher date: 2024-05-06T11:34:13-07:00 summary: GH-83151: Add closure support to pdb (GH-111094) files: A Misc/NEWS.d

[Python-checkins] gh-118362: Fix thread safety around lookups from the type cache in the face of concurrent mutators (#118454)

2024-05-06 Thread DinoV
https://github.com/python/cpython/commit/5a1618a2c8c108b8c73aa9459b63f0dbd66b60f6 commit: 5a1618a2c8c108b8c73aa9459b63f0dbd66b60f6 branch: main author: Dino Viehland committer: DinoV date: 2024-05-06T10:50:35-07:00 summary: gh-118362: Fix thread safety around lookups from the type cache in the f

[Python-checkins] gh-118518: Ensure that the code padding it's applied (#118654)

2024-05-06 Thread pablogsal
https://github.com/python/cpython/commit/e6b213ee3ffb05f067d30cb8bb45681887212444 commit: e6b213ee3ffb05f067d30cb8bb45681887212444 branch: main author: Pablo Galindo Salgado committer: pablogsal date: 2024-05-06T18:20:42+01:00 summary: gh-118518: Ensure that the code padding it's applied (#11865

[Python-checkins] GH-117714: implement athrow().close() and asend().close() using throw (GH-117906)

2024-05-06 Thread encukou
https://github.com/python/cpython/commit/e5c699280deac076cddfef37c8af917a550f6ac3 commit: e5c699280deac076cddfef37c8af917a550f6ac3 branch: main author: Thomas Grainger committer: encukou date: 2024-05-06T17:13:15Z summary: GH-117714: implement athrow().close() and asend().close() using throw (G

[Python-checkins] gh-71592: Add ability to trace Tcl commands executed by Tkinter (GH-118291)

2024-05-06 Thread serhiy-storchaka
https://github.com/python/cpython/commit/1ff626ebda465931ff3e4922e8e87d586eb6244c commit: 1ff626ebda465931ff3e4922e8e87d586eb6244c branch: main author: Serhiy Storchaka committer: serhiy-storchaka date: 2024-05-06T20:12:51+03:00 summary: gh-71592: Add ability to trace Tcl commands executed by Tk

[Python-checkins] [3.12] Fix typo in Doc/library/asyncio-task.rst (GH-118627) (#118657)

2024-05-06 Thread hugovk
https://github.com/python/cpython/commit/f6c2b04d029e3ce547fb687fc4b6d30755d989a6 commit: f6c2b04d029e3ce547fb687fc4b6d30755d989a6 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: hugovk <[email protected]> date: 2024-05-0

[Python-checkins] [3.12] GH-115577 Clarify netloc term usage in urllib.parse docs (GH-117632) (GH-118656)

2024-05-06 Thread encukou
https://github.com/python/cpython/commit/11888a8694b4a2a20f0b27d046085ff9e6fa9171 commit: 11888a8694b4a2a20f0b27d046085ff9e6fa9171 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: encukou date: 2024-05-06T17:01:50Z summary: [3.12] GH-115577 C

[Python-checkins] gh-116322: Rename PyModule_ExperimentalSetGIL to PyUnstable_Module_SetGIL (GH-118645)

2024-05-06 Thread encukou
https://github.com/python/cpython/commit/417dd3aca7bb910691d34e54fee108d7bbc627d3 commit: 417dd3aca7bb910691d34e54fee108d7bbc627d3 branch: main author: Petr Viktorin committer: encukou date: 2024-05-06T18:59:36+02:00 summary: gh-116322: Rename PyModule_ExperimentalSetGIL to PyUnstable_Module_Set

[Python-checkins] GH-115577 Clarify netloc term usage in urllib.parse docs (GH-117632)

2024-05-06 Thread encukou
https://github.com/python/cpython/commit/3ed3bc379a0c4ce7a107dd4bc276554fbb477998 commit: 3ed3bc379a0c4ce7a107dd4bc276554fbb477998 branch: main author: Kerim Kabirov committer: encukou date: 2024-05-06T18:55:22+02:00 summary: GH-115577 Clarify netloc term usage in urllib.parse docs (GH-117632)

[Python-checkins] gh-118609: Add proper error check for framelocalsproxy (#118615)

2024-05-06 Thread gvanrossum
https://github.com/python/cpython/commit/7528b84e947f727734bd802356e380673553387d commit: 7528b84e947f727734bd802356e380673553387d branch: main author: Tian Gao committer: gvanrossum date: 2024-05-06T08:46:15-07:00 summary: gh-118609: Add proper error check for framelocalsproxy (#118615) files:

[Python-checkins] gh-118271: Support more options for reading/writing images in Tkinter (GH-118273)

2024-05-06 Thread serhiy-storchaka
https://github.com/python/cpython/commit/709ca90a00e66cea432096a7ba61aa6459d2a9a7 commit: 709ca90a00e66cea432096a7ba61aa6459d2a9a7 branch: main author: Serhiy Storchaka committer: serhiy-storchaka date: 2024-05-06T15:06:06Z summary: gh-118271: Support more options for reading/writing images in T

[Python-checkins] Fix typo in Doc/library/asyncio-task.rst (GH-118627)

2024-05-06 Thread willingc
https://github.com/python/cpython/commit/fc50f1bdbad3aa52d7cbd3cb836a35806266ec54 commit: fc50f1bdbad3aa52d7cbd3cb836a35806266ec54 branch: main author: Xie Yanbo committer: willingc date: 2024-05-06T08:00:31-07:00 summary: Fix typo in Doc/library/asyncio-task.rst (GH-118627) files: M Doc/librar

[Python-checkins] gh-118225: Support more options for copying images in Tkinter (GH-118228)

2024-05-06 Thread serhiy-storchaka
https://github.com/python/cpython/commit/1b639a04cab0e858d90e2ac459fb34b73700701f commit: 1b639a04cab0e858d90e2ac459fb34b73700701f branch: main author: Serhiy Storchaka committer: serhiy-storchaka date: 2024-05-06T17:33:15+03:00 summary: gh-118225: Support more options for copying images in Tkin

[Python-checkins] gh-118518: Correct type of perf_profiling in config (#118646)

2024-05-06 Thread pablogsal
https://github.com/python/cpython/commit/09871c922393cba4c85bc29d210d76425e076c1d commit: 09871c922393cba4c85bc29d210d76425e076c1d branch: main author: Pablo Galindo Salgado committer: pablogsal date: 2024-05-06T15:30:30+01:00 summary: gh-118518: Correct type of perf_profiling in config (#118646

[Python-checkins] gh-116871: Improve name suggestions in tracebacks (GH-116930)

2024-05-06 Thread serhiy-storchaka
https://github.com/python/cpython/commit/0085c3ae8f067abd4f6540d0f6dd2fb13107618e commit: 0085c3ae8f067abd4f6540d0f6dd2fb13107618e branch: main author: Serhiy Storchaka committer: serhiy-storchaka date: 2024-05-06T15:53:15+03:00 summary: gh-116871: Improve name suggestions in tracebacks (GH-1169

[Python-checkins] gh-66543: Add mimetypes.guess_file_type() (GH-117258)

2024-05-06 Thread serhiy-storchaka
https://github.com/python/cpython/commit/d6fa1d4beef2bf9d83048469667e0ba5f2b41068 commit: d6fa1d4beef2bf9d83048469667e0ba5f2b41068 branch: main author: Serhiy Storchaka committer: serhiy-storchaka date: 2024-05-06T15:50:52+03:00 summary: gh-66543: Add mimetypes.guess_file_type() (GH-117258) fil

[Python-checkins] gh-111201: Use a more common constant in completion tests in test_pyrepl (#118638)

2024-05-06 Thread pablogsal
https://github.com/python/cpython/commit/d3c7821335f88d92297622ad1ec17b33b9baf5cd commit: d3c7821335f88d92297622ad1ec17b33b9baf5cd branch: main author: Pablo Galindo Salgado committer: pablogsal date: 2024-05-06T10:56:47Z summary: gh-111201: Use a more common constant in completion tests in test

[Python-checkins] gh-74929: Make containment checks more efficient in `FrameLocalsProxy` (#118624)

2024-05-06 Thread ncoghlan
https://github.com/python/cpython/commit/afbe5bf9c8c621bb19833a06e296245c41f0dbc5 commit: afbe5bf9c8c621bb19833a06e296245c41f0dbc5 branch: main author: Tian Gao committer: ncoghlan date: 2024-05-06T20:16:48+10:00 summary: gh-74929: Make containment checks more efficient in `FrameLocalsProxy` (#1

[Python-checkins] gh-74929: locals() documentation update for PEP 667 (#118265)

2024-05-06 Thread ncoghlan
https://github.com/python/cpython/commit/757fd3e0101c85081dfec60cbab26519b7a40305 commit: 757fd3e0101c85081dfec60cbab26519b7a40305 branch: main author: Alyssa Coghlan committer: ncoghlan date: 2024-05-06T20:06:07+10:00 summary: gh-74929: locals() documentation update for PEP 667 (#118265) Docum

[Python-checkins] gh-111201: Fix event queue tests for pyrepl (#118635)

2024-05-06 Thread pablogsal
https://github.com/python/cpython/commit/8e750b83a89ad62a6a209357dcbadc91a2ceaedb commit: 8e750b83a89ad62a6a209357dcbadc91a2ceaedb branch: main author: Lysandros Nikolaou committer: pablogsal date: 2024-05-06T10:50:42+01:00 summary: gh-111201: Fix event queue tests for pyrepl (#118635) files: M

[Python-checkins] [3.12] gh-118164: Break a loop between _pydecimal and _pylong and optimize int to str conversion (GH-118483) (GH-118590)

2024-05-06 Thread serhiy-storchaka
https://github.com/python/cpython/commit/a4812fd8f70640d8e4b83b8fcbb6224c9f5e0cf2 commit: a4812fd8f70640d8e4b83b8fcbb6224c9f5e0cf2 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: serhiy-storchaka date: 2024-05-06T12:10:05+03:00 summary: [3.1

[Python-checkins] [3.12] gh-115119: Bump CI to use Ubuntu 22.04 (#118631) (#118634)

2024-05-06 Thread erlend-aasland
https://github.com/python/cpython/commit/a81fe2a8f82d98c05c18908958efb757d35384b4 commit: a81fe2a8f82d98c05c18908958efb757d35384b4 branch: 3.12 author: Erlend E. Aasland committer: erlend-aasland date: 2024-05-06T09:03:36Z summary: [3.12] gh-115119: Bump CI to use Ubuntu 22.04 (#118631) (#118634

[Python-checkins] gh-118465: Add __firstlineno__ attribute to class (GH-118475)

2024-05-06 Thread serhiy-storchaka
https://github.com/python/cpython/commit/153b3f75306b5d26e29ea157105d0fdc247ef853 commit: 153b3f75306b5d26e29ea157105d0fdc247ef853 branch: main author: Serhiy Storchaka committer: serhiy-storchaka date: 2024-05-06T12:02:37+03:00 summary: gh-118465: Add __firstlineno__ attribute to class (GH-1184

[Python-checkins] gh-115119: Bump CI to use Ubuntu 22.04 (#118631)

2024-05-06 Thread erlend-aasland
https://github.com/python/cpython/commit/716ec4bfcf1a564db9936122c442baa99f9c4a8c commit: 716ec4bfcf1a564db9936122c442baa99f9c4a8c branch: main author: Erlend E. Aasland committer: erlend-aasland date: 2024-05-06T10:39:43+02:00 summary: gh-115119: Bump CI to use Ubuntu 22.04 (#118631) Ubuntu 22

[Python-checkins] [3.12] gh-78955: Use user-selected color theme for Help => IDLE Doc (GH-9502) (#118632)

2024-05-06 Thread terryjreedy
https://github.com/python/cpython/commit/6abf8401db57effb1fa4b1dd0a4477bc923a6385 commit: 6abf8401db57effb1fa4b1dd0a4477bc923a6385 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: terryjreedy date: 2024-05-06T08:12:39Z summary: [3.12] gh-7895

[Python-checkins] gh-95382: Improve performance of json encoder with indent (GH-118105)

2024-05-06 Thread serhiy-storchaka
https://github.com/python/cpython/commit/05adfbba2abafcdd271bf144a7b3f80bcd927288 commit: 05adfbba2abafcdd271bf144a7b3f80bcd927288 branch: main author: Pieter Eendebak committer: serhiy-storchaka date: 2024-05-06T11:04:39+03:00 summary: gh-95382: Improve performance of json encoder with indent (

[Python-checkins] gh-78955: Use user-selected color theme for Help => IDLE Doc (#9502)

2024-05-06 Thread terryjreedy
https://github.com/python/cpython/commit/7758be431807d574e0f1bbab003796585ae46719 commit: 7758be431807d574e0f1bbab003796585ae46719 branch: main author: Terry Jan Reedy committer: terryjreedy date: 2024-05-06T03:55:56-04:00 summary: gh-78955: Use user-selected color theme for Help => IDLE Doc (#9

[Python-checkins] gh-118613: Fix error handling of `_PyEval_GetFrameLocals` in `ceval.c` (#118614)

2024-05-06 Thread sobolevn
https://github.com/python/cpython/commit/a8e5fed1007233f677d3539162257b99b920df00 commit: a8e5fed1007233f677d3539162257b99b920df00 branch: main author: Nikita Sobolev committer: sobolevn date: 2024-05-06T10:34:56+03:00 summary: gh-118613: Fix error handling of `_PyEval_GetFrameLocals` in `ceval.