diff options
author | Mark Shannon <mark@hotpy.org> | 2023-08-04 10:10:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-04 10:10:29 +0100 |
commit | fa45958450aa3489607daf9855ca0474a2a20878 (patch) | |
tree | 0e7a9b21503a7cf08691b99990ee6a538aa931b5 /Lib/test/mapping_tests.py | |
parent | 0bd784b355edf0d1911a7830db5d41c84171e367 (diff) | |
download | cpython-fa45958450aa3489607daf9855ca0474a2a20878.tar.gz cpython-fa45958450aa3489607daf9855ca0474a2a20878.zip |
GH-107263: Increase C stack limit for most functions, except `_PyEval_EvalFrameDefault()` (GH-107535)
* Set C recursion limit to 1500, set cost of eval loop to 2 frames, and compiler mutliply to 2.
Diffstat (limited to 'Lib/test/mapping_tests.py')
-rw-r--r-- | Lib/test/mapping_tests.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/mapping_tests.py b/Lib/test/mapping_tests.py index 613206a0855..5492bbf86d1 100644 --- a/Lib/test/mapping_tests.py +++ b/Lib/test/mapping_tests.py @@ -2,6 +2,7 @@ import unittest import collections import sys +from test.support import C_RECURSION_LIMIT class BasicTestMappingProtocol(unittest.TestCase): @@ -624,7 +625,7 @@ class TestHashMappingProtocol(TestMappingProtocol): def test_repr_deep(self): d = self._empty_mapping() - for i in range(sys.getrecursionlimit() + 100): + for i in range(C_RECURSION_LIMIT + 1): d0 = d d = self._empty_mapping() d[1] = d0 |