Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Lib/test/test_capi/test_exceptions.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -66,7 +66,7 @@ def check_fatal_error(self, code, expected, not_expected=()):
rc, out, err = assert_python_failure('-sSI', '-c', code)

err = decode_stderr(err)
self.assertIn('Fatal Python error: test_fatal_error: MESSAGE\n',
self.assertIn('Fatal Python error: _testcapi_fatal_error_impl: MESSAGE\n',
err)

match = re.search(r'^Extension modules:(.*) \(total: ([0-9]+)\)$',
Expand Down
2 changes: 1 addition & 1 deletion Lib/test/test_faulthandler.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -270,7 +270,7 @@ def check_fatal_error_func(self, release_gil):
""",
2,
'xyz',
func='test_fatal_error',
func='_testcapi_fatal_error_impl',
py_fatal_error=True)

def test_fatal_error(self):
Expand Down
Loading