[Python-checkins] [3.10] gh-60203: Always pass True/False as boolean arguments in tests (GH-99983) (GH-99989)

serhiy-storchaka webhook-mailer at python.org
Sun Dec 4 08:08:31 EST 2022


https://github.com/python/cpython/commit/ac781282712ab39cd6339e3c780c11e0027d22ab
commit: ac781282712ab39cd6339e3c780c11e0027d22ab
branch: 3.10
author: Serhiy Storchaka <storchaka at gmail.com>
committer: serhiy-storchaka <storchaka at gmail.com>
date: 2022-12-04T15:08:24+02:00
summary:

[3.10] gh-60203: Always pass True/False as boolean arguments in tests (GH-99983) (GH-99989)

Unless we explicitly test non-bool values.
(cherry picked from commit 76f43fc09af29401cc0cec7710b03e4dbf8a4578)

files:
M Lib/test/_test_multiprocessing.py
M Lib/test/test_call.py

diff --git a/Lib/test/_test_multiprocessing.py b/Lib/test/_test_multiprocessing.py
index be174aae3d63..57eada634c44 100644
--- a/Lib/test/_test_multiprocessing.py
+++ b/Lib/test/_test_multiprocessing.py
@@ -5982,5 +5982,5 @@ def test_semlock_subclass(self):
         class SemLock(_multiprocessing.SemLock):
             pass
         name = f'test_semlock_subclass-{os.getpid()}'
-        s = SemLock(1, 0, 10, name, 0)
+        s = SemLock(1, 0, 10, name, False)
         _multiprocessing.sem_unlink(name)
diff --git a/Lib/test/test_call.py b/Lib/test/test_call.py
index eee269093b27..1bf1f79fdad9 100644
--- a/Lib/test/test_call.py
+++ b/Lib/test/test_call.py
@@ -546,7 +546,7 @@ def __index__(self):
                 self.kwargs.clear()
                 gc.collect()
                 return 0
-        x = IntWithDict(dont_inherit=IntWithDict())
+        x = IntWithDict(optimize=IntWithDict())
         # We test the argument handling of "compile" here, the compilation
         # itself is not relevant. When we pass flags=x below, x.__index__() is
         # called, which changes the keywords dict.



More information about the Python-checkins mailing list