diff options
author | Xavier de Gaye <xdegaye@users.sourceforge.net> | 2016-11-13 20:14:03 (GMT) |
---|---|---|
committer | Xavier de Gaye <xdegaye@users.sourceforge.net> | 2016-11-13 20:14:03 (GMT) |
commit | 524eac0f142b3ea02bee3470262de5143da37d86 (patch) | |
tree | 5b445b52dbd3bde1b4efd5917148d58d0f893a3e /Lib/test/test_faulthandler.py | |
parent | c4bd0fe2e30827004a8283a1499e78c92ddb42a2 (diff) | |
download | cpython-524eac0f142b3ea02bee3470262de5143da37d86.zip cpython-524eac0f142b3ea02bee3470262de5143da37d86.tar.gz cpython-524eac0f142b3ea02bee3470262de5143da37d86.tar.bz2 |
Issue #26934: Fix test_faulthandler on Android where raise() exits with 0,
with a cosmetic change to add a commit message with the issue number,
missing from the previous two commits.
Diffstat (limited to 'Lib/test/test_faulthandler.py')
-rw-r--r-- | 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 index bdd8d1a..67219c1 100644 --- a/Lib/test/test_faulthandler.py +++ b/Lib/test/test_faulthandler.py @@ -44,7 +44,7 @@ def temporary_filename(): def requires_raise(test): return (test if not is_android else - requires_android_level(24, 'raise() is buggy')(test)) + requires_android_level(24, 'raise() is buggy')(test)) class FaultHandlerTests(unittest.TestCase): def get_output(self, code, filename=None, fd=None): |