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.
1 parent c06be6b commit 39d381fCopy full SHA for 39d381f
1 file changed
Include/Python.h
@@ -45,6 +45,11 @@
45
# endif
46
#endif
47
48
+// gh-111506: The free-threaded build is not compatible with the limited API
49
+// or the stable ABI.
50
+#if defined(Py_LIMITED_API) && defined(Py_GIL_DISABLED)
51
+# error "The limited API is not currently supported in the free-threaded build"
52
+#endif
53
54
// Include Python header files
55
#include "pyport.h"
0 commit comments