File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -40,9 +40,11 @@ def test_build_c11(self):
40
40
def test_build_c99 (self ):
41
41
self .check_build ('_test_c99_cext' , std = 'c99' )
42
42
43
+ @unittest .skipIf (support .Py_GIL_DISABLED , 'incompatible with Free Threading' )
43
44
def test_build_limited (self ):
44
45
self .check_build ('_test_limited_cext' , limited = True )
45
46
47
+ @unittest .skipIf (support .Py_GIL_DISABLED , 'broken for now with Free Threading' )
46
48
def test_build_limited_c11 (self ):
47
49
self .check_build ('_test_limited_c11_cext' , limited = True , std = 'c11' )
48
50
Original file line number Diff line number Diff line change 11
11
12
12
13
13
SOURCE = 'extension.c'
14
- if not support .MS_WINDOWS :
14
+ if not support .MS_WINDOWS and not support . Py_GIL_DISABLED :
15
15
# C compiler flags for GCC and clang
16
16
CFLAGS = [
17
17
# The purpose of test_cext extension is to check that building a C
You can’t perform that action at this time.
0 commit comments