File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -2507,12 +2507,18 @@ def inner_function():
25072507 inner_func = depickled_factory ()
25082508 assert inner_func () == _TEST_GLOBAL_VARIABLE
25092509
2510+ # TODO: remove this xfail when we drop support for Python 3.8. We don't
2511+ # plan to fix it because Python 3.8 is EOL.
25102512 @pytest .mark .skipif (
25112513 sys .version_info < (3 , 9 ),
25122514 reason = "Can cause CPython 3.8 to segfault" ,
25132515 )
2514- # TODO: remove this xfail when we drop support for Python 3.8. We don't
2515- # plan to fix it because Python 3.8 is EOL.
2516+ @pytest .mark .skipif (
2517+ sys .version_info > (3 , 14 ),
2518+ reason = "Can cause CPython 3.14 interpreter to crash" ,
2519+ # This interpreter crash is reported upstream in
2520+ # https://github.com/python/cpython/issues/131543
2521+ )
25162522 def test_recursion_during_pickling (self ):
25172523 class A :
25182524 def __getattribute__ (self , name ):
You can’t perform that action at this time.
0 commit comments