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.
1 parent 58f8bbc commit 517c985Copy full SHA for 517c985
distributed/protocol/tests/test_protocol.py
@@ -169,8 +169,8 @@ def gen_deeply_nested(depth):
169
return d
170
171
# Note: Python <=3.13 already fails with 2x the recursion limit;
172
- # 3.14 keeps working until 14x for some reason
173
- msg = gen_deeply_nested(sys.getrecursionlimit() * 14)
+ # 3.14 keeps working until much later (and the exact limit changes by platform)
+ msg = gen_deeply_nested(sys.getrecursionlimit() * 20)
174
175
with pytest.raises(RecursionError):
176
copy.deepcopy(msg)
0 commit comments