2023-10-14 13:31:04 +00:00
|
|
|
---
|
2025-04-11 19:56:43 +00:00
|
|
|
Lib/test/test_subprocess.py | 6 +++++-
|
|
|
|
|
1 file changed, 5 insertions(+), 1 deletion(-)
|
2023-10-14 13:31:04 +00:00
|
|
|
|
2025-04-11 19:56:43 +00:00
|
|
|
Index: Python-3.13.3/Lib/test/test_subprocess.py
|
|
|
|
|
===================================================================
|
|
|
|
|
--- Python-3.13.3.orig/Lib/test/test_subprocess.py 2025-04-08 15:54:08.000000000 +0200
|
|
|
|
|
+++ Python-3.13.3/Lib/test/test_subprocess.py 2025-04-11 21:53:36.198770341 +0200
|
|
|
|
|
@@ -274,7 +274,11 @@
|
|
|
|
|
output = subprocess.check_output(
|
|
|
|
|
[sys.executable, "-c",
|
|
|
|
|
"import time; time.sleep(3600)"],
|
|
|
|
|
- timeout=0.1)
|
|
|
|
|
+ # Some heavily loaded buildbots (sparc Debian 3.x) require
|
|
|
|
|
+ # this much time to start and print.
|
|
|
|
|
+ # timeout=3)
|
|
|
|
|
+ # OBS might require even more
|
|
|
|
|
+ timeout=10)
|
2023-10-14 13:31:04 +00:00
|
|
|
|
2025-04-11 19:56:43 +00:00
|
|
|
def test_call_kwargs(self):
|
|
|
|
|
# call() function with keyword args
|