We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f111f7a commit 27c008eCopy full SHA for 27c008e
1 file changed
tests/cloudpickle_test.py
@@ -2479,6 +2479,12 @@ def inner_function():
2479
inner_func = depickled_factory()
2480
assert inner_func() == _TEST_GLOBAL_VARIABLE
2481
2482
+ @pytest.mark.skipif(
2483
+ sys.version_info < (3, 9),
2484
+ reason="Can cause CPython 3.8 to segfault",
2485
+ )
2486
+ # TODO: remove this xfail when we drop support for Python 3.8. We don't
2487
+ # plan to fix it because Python 3.8 is EOL.
2488
def test_recursion_during_pickling(self):
2489
class A:
2490
def __getattribute__(self, name):
0 commit comments