Matej Cepl
c36a6fcb46
- bpo#42938 (bsc#1181126): Avoid static buffers when computing the repr of ctypes.c_double and ctypes.c_longdouble values. This issue was assigned CVE-2021-3177. - bpo#42967 (bso#1182379): Fix web cache poisoning vulnerability by defaulting the query args separator to &, and allowing the user to choose a custom separator. This issue was assigned CVE-2021-23336. OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:Factory/python38?expand=0&rev=53
13 lines
549 B
Diff
13 lines
549 B
Diff
--- a/Lib/test/test_subprocess.py
|
|
+++ b/Lib/test/test_subprocess.py
|
|
@@ -1147,7 +1147,8 @@ class ProcessTestCase(BaseTestCase):
|
|
self.assertIn("0.0001", str(c.exception)) # For coverage of __str__.
|
|
# Some heavily loaded buildbots (sparc Debian 3.x) require this much
|
|
# time to start.
|
|
- self.assertEqual(p.wait(timeout=3), 0)
|
|
+ # OBS might require even more
|
|
+ self.assertEqual(p.wait(timeout=10), 0)
|
|
|
|
def test_invalid_bufsize(self):
|
|
# an invalid type of the bufsize argument should raise
|