From e712f161947821fe1ea7a62a7677f3955dbaa3e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A9n=C3=A9dikt=20Tran?= <10796600+picnixz@users.noreply.github.com> Date: Fri, 10 Jan 2025 10:51:33 +0100 Subject: [PATCH 1/2] fix duplicated keys in `Lib/test/test_embed.py` fixtures --- Lib/test/test_embed.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/Lib/test/test_embed.py b/Lib/test/test_embed.py index 7110fb889f3c8e..566f37e2496dc0 100644 --- a/Lib/test/test_embed.py +++ b/Lib/test/test_embed.py @@ -1047,7 +1047,6 @@ def test_init_compat_env(self): 'use_hash_seed': True, 'hash_seed': 42, 'tracemalloc': 2, - 'perf_profiling': 0, 'import_time': True, 'code_debug_ranges': False, 'malloc_stats': True, @@ -1083,7 +1082,6 @@ def test_init_python_env(self): 'use_hash_seed': True, 'hash_seed': 42, 'tracemalloc': 2, - 'perf_profiling': 0, 'import_time': True, 'code_debug_ranges': False, 'malloc_stats': True, From 68ca21f570b4a59eb63177eefe7cb06137dcd8f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A9n=C3=A9dikt=20Tran?= <10796600+picnixz@users.noreply.github.com> Date: Fri, 10 Jan 2025 10:51:42 +0100 Subject: [PATCH 2/2] fix duplicated keys in `Lib/test/test_long.py` fixtures --- Lib/test/test_long.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Lib/test/test_long.py b/Lib/test/test_long.py index 19978118c80dba..f336d49fa4f008 100644 --- a/Lib/test/test_long.py +++ b/Lib/test/test_long.py @@ -1470,7 +1470,6 @@ def equivalent_python(byte_array, byteorder, signed=False): b'\x00': 0, b'\x00\x00': 0, b'\x01': 1, - b'\x00\x01': 256, b'\xff': -1, b'\xff\xff': -1, b'\x81': -127,