Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
test_freethreading
1 parent d2e4231 commit 360f14aCopy full SHA for 360f14a
1 file changed
Lib/test/test_free_threading/__init__.py
@@ -1,7 +1,11 @@
1
import os
2
+import unittest
3
4
from test import support
5
6
7
+if not support.Py_GIL_DISABLED:
8
+ raise unittest.SkipTest("GIL enabled")
9
+
10
def load_tests(*args):
11
return support.load_package_tests(os.path.dirname(__file__), *args)
0 commit comments