]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-60203: Always pass True/False as boolean arguments in tests (GH-99983)
authorSerhiy Storchaka <storchaka@gmail.com>
Sun, 4 Dec 2022 12:28:56 +0000 (14:28 +0200)
committerGitHub <noreply@github.com>
Sun, 4 Dec 2022 12:28:56 +0000 (14:28 +0200)
Unless we explicitly test non-bool values.

Lib/test/_test_multiprocessing.py
Lib/test/test_asyncio/test_ssl.py
Lib/test/test_call.py
Lib/test/test_capi/test_misc.py
Lib/test/test_subprocess.py

index a66f4f5b897cd36692bc21fcad0e1012d984eaba..2fa75eb4d113118fc2a188d16ac02439a90965a9 100644 (file)
@@ -6042,5 +6042,5 @@ class SemLockTests(unittest.TestCase):
         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)
index 5de9b7a14e87da3b66bb856e38264cfd73294139..aaf3c37101f52a66a9cc477c551ded5ae0ede1b9 100644 (file)
@@ -1689,7 +1689,7 @@ class TestThreadedServer(SocketThread):
     def run(self):
         try:
             with self._sock:
-                self._sock.setblocking(0)
+                self._sock.setblocking(False)
                 self._run()
         finally:
             self._s1.close()
index f148b5ebbc5a9b55ed4caa84d4d04076401517fa..c17528be97b484c3e305239cde515c70417e1801 100644 (file)
@@ -559,7 +559,7 @@ class FastCallTests(unittest.TestCase):
                 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.
index 1d30adaee9218fcff8fe19cf594e609c9ae8a59a..06a51aa3cc219ae54d54f03d60076eeb2c9f3e62 100644 (file)
@@ -138,8 +138,9 @@ class CAPITest(unittest.TestCase):
         class Z(object):
             def __len__(self):
                 return 1
-        self.assertRaises(TypeError, _posixsubprocess.fork_exec,
-                          1,Z(),3,(1, 2),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23)
+        with self.assertRaisesRegex(TypeError, 'indexing'):
+            _posixsubprocess.fork_exec(
+                          1,Z(),True,(1, 2),5,6,7,8,9,10,11,12,13,14,True,True,17,False,19,20,21,22,False)
         # Issue #15736: overflow in _PySequence_BytesToCharpArray()
         class Z(object):
             def __len__(self):
@@ -147,7 +148,7 @@ class CAPITest(unittest.TestCase):
             def __getitem__(self, i):
                 return b'x'
         self.assertRaises(MemoryError, _posixsubprocess.fork_exec,
-                          1,Z(),3,(1, 2),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23)
+                          1,Z(),True,(1, 2),5,6,7,8,9,10,11,12,13,14,True,True,17,False,19,20,21,22,False)
 
     @unittest.skipUnless(_posixsubprocess, '_posixsubprocess required for this test.')
     def test_subprocess_fork_exec(self):
@@ -157,7 +158,7 @@ class CAPITest(unittest.TestCase):
 
         # Issue #15738: crash in subprocess_fork_exec()
         self.assertRaises(TypeError, _posixsubprocess.fork_exec,
-                          Z(),[b'1'],3,(1, 2),5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23)
+                          Z(),[b'1'],True,(1, 2),5,6,7,8,9,10,11,12,13,14,True,True,17,False,19,20,21,22,False)
 
     @unittest.skipIf(MISSING_C_DOCSTRINGS,
                      "Signature information for builtins requires docstrings")
index 424a4a93b6f9722c51f1ae2cb82aac639a489d97..8713c73f87a0546e68e69ad4c167709b4336288d 100644 (file)
@@ -3209,7 +3209,7 @@ class POSIXProcessTestCase(BaseTestCase):
                         1, 2, 3, 4,
                         True, True, 0,
                         None, None, None, -1,
-                        None, "no vfork")
+                        None, True)
                 self.assertIn('fds_to_keep', str(c.exception))
         finally:
             if not gc_enabled: