mirror of
https://github.com/python/cpython.git
synced 2025-10-17 12:18:23 +00:00
GH-91079: Revert "GH-91079: Implement C stack limits using addresses, not counters. (GH-130007)" for now (GH130413)
Revert "GH-91079: Implement C stack limits using addresses, not counters. (GH-130007)" for now
Unfortunatlely, the change broke some buildbots.
This reverts commit 2498c22fa0
.
This commit is contained in:
parent
0ff1611574
commit
ef29104f7d
47 changed files with 1466 additions and 1220 deletions
|
@ -1479,7 +1479,7 @@ class ExceptionTests(unittest.TestCase):
|
|||
"""
|
||||
rc, out, err = script_helper.assert_python_failure("-c", code)
|
||||
self.assertEqual(rc, 1)
|
||||
expected = b'RecursionError'
|
||||
expected = b'RecursionError: maximum recursion depth exceeded'
|
||||
self.assertTrue(expected in err, msg=f"{expected!r} not found in {err[:3_000]!r}... (truncated)")
|
||||
self.assertIn(b'Done.', out)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue