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 a403d27 commit 5a6052bCopy full SHA for 5a6052b
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()
+IS_FREE_THREADING = False if not PY313 else 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