There was an error while loading. Please reload this page.
1 parent 1960cdc commit 774fa93Copy full SHA for 774fa93
1 file changed
tests/test_copium.py
@@ -151,12 +151,14 @@ def test_recursion_limit_increase():
151
copium.deepcopy(at_interpreter_limit)
152
153
154
+@pytest.mark.skip(reason="WIP")
155
def test_graceful_recursion_error():
156
value = make_nested(999999)
157
with pytest.raises(RecursionError):
158
copium.deepcopy(value) # without safeguards this can SIGSEGV
159
160
161
162
def test_graceful_recursion_error_with_increased_limit():
163
"""
164
We won't guarantee to match interpreter recursion limit, but will handle it gracefully.
0 commit comments