File tree 1 file changed +8
-2
lines changed
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -2507,12 +2507,18 @@ def inner_function():
2507
2507
inner_func = depickled_factory ()
2508
2508
assert inner_func () == _TEST_GLOBAL_VARIABLE
2509
2509
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.
2510
2512
@pytest .mark .skipif (
2511
2513
sys .version_info < (3 , 9 ),
2512
2514
reason = "Can cause CPython 3.8 to segfault" ,
2513
2515
)
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
+ )
2516
2522
def test_recursion_during_pickling (self ):
2517
2523
class A :
2518
2524
def __getattribute__ (self , name ):
You can’t perform that action at this time.
0 commit comments