[Python-checkins] cpython: Attempt a larger timeout value to satisfy the buildbots. (original) (raw)
reid.kleckner python-checkins at python.org
Mon Mar 14 18:34:32 CET 2011
- Previous message: [Python-checkins] cpython (merge 3.2 -> default): Dummy merge with 3.2.
- Next message: [Python-checkins] cpython: Add a SubprocessError base class for exceptions in the subprocess module.
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
http://hg.python.org/cpython/rev/fd2b3eac6756 changeset: 68462:fd2b3eac6756 user: Reid Kleckner <reid at kleckner.net> date: Mon Mar 14 13:34:12 2011 -0400 summary: Attempt a larger timeout value to satisfy the buildbots.
files: Lib/test/test_subprocess.py
diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -128,7 +128,7 @@ "import sys; sys.stdout.write('BDFL')\n" "sys.stdout.flush()\n" "while True: pass"],
timeout=0.5)
timeout=1.5) self.fail("Expected TimeoutExpired.") self.assertEqual(c.exception.output, b'BDFL')
-- Repository URL: http://hg.python.org/cpython
- Previous message: [Python-checkins] cpython (merge 3.2 -> default): Dummy merge with 3.2.
- Next message: [Python-checkins] cpython: Add a SubprocessError base class for exceptions in the subprocess module.
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]