From 15d74068f3a2f093e0b73dd7a74938fa6d7f7460 Mon Sep 17 00:00:00 2001 From: mushitoriami <232557021+mushitoriami@users.noreply.github.com> Date: Fri, 19 Jun 2026 02:45:04 +0900 Subject: [PATCH 1/2] docs: Fix broken reference of parameter type in `library/logging.rst` (GH-151645) --- Doc/library/logging.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst index aba530844d7177a..a3d117c10702414 100644 --- a/Doc/library/logging.rst +++ b/Doc/library/logging.rst @@ -690,7 +690,7 @@ Formatter Objects :param defaults: A dictionary with default values to use in custom fields. For example, ``logging.Formatter('%(ip)s %(message)s', defaults={"ip": None})`` - :type defaults: dict[str, Any] + :type defaults: dict[str, typing.Any] .. versionchanged:: 3.2 Added the *style* parameter. From 17720b184d333c7a869d801ed1a56cd91f42bdc2 Mon Sep 17 00:00:00 2001 From: Donghee Na Date: Fri, 19 Jun 2026 04:57:41 +0900 Subject: [PATCH 2/2] gh-151229: Add CI to prevent JIT stress test regression (#151647) --- .github/workflows/jit.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/jit.yml b/.github/workflows/jit.yml index 2f024ad52f30914..66bff36fe5e90c0 100644 --- a/.github/workflows/jit.yml +++ b/.github/workflows/jit.yml @@ -183,6 +183,9 @@ jobs: - name: JIT without optimizations (Debug) configure_flags: --enable-experimental-jit --with-pydebug test_env: "PYTHON_UOPS_OPTIMIZE=0" + - name: JIT with stress testing (Debug) + configure_flags: --enable-experimental-jit --with-pydebug + test_env: "PYTHON_JIT_STRESS=1" - name: JIT with tail calling interpreter configure_flags: --enable-experimental-jit --with-tail-call-interp --with-pydebug use_clang: true