summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_faulthandler.py
diff options
context:
space:
mode:
authorXavier de Gaye <xdegaye@users.sourceforge.net>2016-11-13 20:14:03 (GMT)
committerXavier de Gaye <xdegaye@users.sourceforge.net>2016-11-13 20:14:03 (GMT)
commit524eac0f142b3ea02bee3470262de5143da37d86 (patch)
tree5b445b52dbd3bde1b4efd5917148d58d0f893a3e /Lib/test/test_faulthandler.py
parentc4bd0fe2e30827004a8283a1499e78c92ddb42a2 (diff)
downloadcpython-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.py2
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):