https://github.com/python/cpython/commit/59fcae793f94be977c56c1f3c2988bd93d6b1564
commit: 59fcae793f94be977c56c1f3c2988bd93d6b1564
branch: main
author: Bénédikt Tran <[email protected]>
committer: picnixz <[email protected]>
date: 2025-01-20T13:50:10+01:00
summary:

Remove duplicated dict keys in `test_{embed,long}.py` fixtures (#128727)

files:
M Lib/test/test_embed.py
M Lib/test/test_long.py

diff --git a/Lib/test/test_embed.py b/Lib/test/test_embed.py
index a2400aa96c3ddd..6d1b4cce498276 100644
--- a/Lib/test/test_embed.py
+++ b/Lib/test/test_embed.py
@@ -1049,7 +1049,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,
@@ -1086,7 +1085,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,
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,

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to