From 80361992ea50233f925af6e82e67588ef2ddc0a7 Mon Sep 17 00:00:00 2001 From: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com> Date: Tue, 21 Jan 2025 11:05:16 +0800 Subject: [PATCH] Try fix on Windows --- Lib/test/test_sys.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py index d839893d2c657e..d2c45e61a80802 100644 --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -1621,9 +1621,9 @@ def func(): return sys._getframe() x = func() if support.Py_GIL_DISABLED: - INTERPRETER_FRAME = '10PhcP' + INTERPRETER_FRAME = '10PhccP' else: - INTERPRETER_FRAME = '9PhcP' + INTERPRETER_FRAME = '9PhcccP' check(x, size('3PiccPP' + INTERPRETER_FRAME + 'P')) # function def func(): pass