mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
Skip a recursion depth check test when running under CPython and have a trace
function set. Otherwise a Python fatal error about hitting an unrecoverable recursion depth gets triggered. Closes issue #10985. Code review by Georg Brandl.
This commit is contained in:
parent
6ef18f4fa3
commit
c3e8867a41
1 changed files with 2 additions and 0 deletions
|
@ -215,6 +215,8 @@ class SysModuleTest(unittest.TestCase):
|
|||
self.assertEqual(sys.getrecursionlimit(), 10000)
|
||||
sys.setrecursionlimit(oldlimit)
|
||||
|
||||
@unittest.skipIf(sys.gettrace(), 'fatal error if run with a trace function')
|
||||
@test.support.cpython_only
|
||||
def test_recursionlimit_recovery(self):
|
||||
# NOTE: this test is slightly fragile in that it depends on the current
|
||||
# recursion count when executing the test being low enough so as to
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue