Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
test_json
1 parent 0b8c348 commit e3539e9Copy full SHA for e3539e9
1 file changed
Lib/test/test_json/test_recursion.py
@@ -71,7 +71,7 @@ def default(self, o):
71
@support.skip_emscripten_stack_overflow()
72
@support.skip_wasi_stack_overflow()
73
def test_highly_nested_objects_decoding(self):
74
- very_deep = 200000
+ very_deep = 500_000
75
# test that loading highly-nested objects doesn't segfault when C
76
# accelerations are used. See #12017
77
with self.assertRaises(RecursionError):
@@ -90,7 +90,7 @@ def test_highly_nested_objects_decoding(self):
90
def test_highly_nested_objects_encoding(self):
91
# See #12051
92
l, d = [], {}
93
- for x in range(200_000):
+ for x in range(500_000):
94
l, d = [l], {'k':d}
95
96
with support.infinite_recursion(5000):
0 commit comments