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 5a6052b commit a866149Copy full SHA for a866149
pandas/compat/_constants.py
@@ -18,7 +18,7 @@
18
PY313 = sys.version_info >= (3, 13)
19
PYPY = platform.python_implementation() == "PyPy"
20
WASM = (sys.platform == "emscripten") or (platform.machine() in ["wasm32", "wasm64"])
21
-IS_FREE_THREADING = False if not PY313 else sys._is_gil_enabled() # type: ignore[attr-defined]
+IS_FREE_THREADING = False if not PY313 else not sys._is_gil_enabled() # type: ignore[attr-defined]
22
ISMUSL = "musl" in (sysconfig.get_config_var("HOST_GNU_TYPE") or "")
23
REF_COUNT = 2 if PY311 else 3
24
0 commit comments