
python-checkins at python
May 6, 2012, 3:28 AM
Post #1 of 1
(27 views)
Permalink
|
|
cpython: Closes #14729: Allowed test to pass on Windows by adjusting the test condition
|
|
http://hg.python.org/cpython/rev/2e71f25912d4 changeset: 76785:2e71f25912d4 user: Vinay Sajip <vinay_sajip [at] yahoo> date: Sun May 06 11:28:46 2012 +0100 summary: Closes #14729: Allowed test to pass on Windows by adjusting the test condition slightly to allow for a Windows-specific error message. files: Lib/test/test_faulthandler.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Lib/test/test_faulthandler.py b/Lib/test/test_faulthandler.py --- a/Lib/test/test_faulthandler.py +++ b/Lib/test/test_faulthandler.py @@ -92,7 +92,7 @@ ^Fatal Python error: {name} {header}: - File "<string>", line {lineno} in <module>$ + File "<string>", line {lineno} in <module> """.strip() regex = regex.format( lineno=line_number, -- Repository URL: http://hg.python.org/cpython
|