From: Bénédikt Tran <10796600+picnixz@users.noreply.github.com> Date: Mon, 20 Jan 2025 12:50:10 +0000 (+0100) Subject: Remove duplicated dict keys in `test_{embed,long}.py` fixtures (#128727) X-Git-Tag: v3.14.0a5~351 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=59fcae793f94be977c56c1f3c2988bd93d6b1564;p=thirdparty%2FPython%2Fcpython.git Remove duplicated dict keys in `test_{embed,long}.py` fixtures (#128727) --- diff --git a/Lib/test/test_embed.py b/Lib/test/test_embed.py index a2400aa96c3d..6d1b4cce4982 100644 --- a/Lib/test/test_embed.py +++ b/Lib/test/test_embed.py @@ -1049,7 +1049,6 @@ class InitConfigTests(EmbeddingTestsMixin, unittest.TestCase): 'use_hash_seed': True, 'hash_seed': 42, 'tracemalloc': 2, - 'perf_profiling': 0, 'import_time': True, 'code_debug_ranges': False, 'malloc_stats': True, @@ -1086,7 +1085,6 @@ class InitConfigTests(EmbeddingTestsMixin, unittest.TestCase): 'use_hash_seed': True, 'hash_seed': 42, 'tracemalloc': 2, - 'perf_profiling': 0, 'import_time': True, 'code_debug_ranges': False, 'malloc_stats': True, diff --git a/Lib/test/test_long.py b/Lib/test/test_long.py index 19978118c80d..f336d49fa4f0 100644 --- a/Lib/test/test_long.py +++ b/Lib/test/test_long.py @@ -1470,7 +1470,6 @@ class LongTest(unittest.TestCase): b'\x00': 0, b'\x00\x00': 0, b'\x01': 1, - b'\x00\x01': 256, b'\xff': -1, b'\xff\xff': -1, b'\x81': -127,