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 8e86d24 commit 271b4acCopy full SHA for 271b4ac
pipcl.py
@@ -2435,6 +2435,12 @@ def log(text):
2435
log(f'{sys.version_info=}')
2436
log(f'{list(sys.version_info)=}')
2437
2438
+ log(f'{sysconfig.get_config_var("Py_GIL_DISABLED")=}')
2439
+ try:
2440
+ log(f'{sys._is_gil_enabled()=}')
2441
+ except AttributeError:
2442
+ log(f'sys._is_gil_enabled() => AttributeError')
2443
+
2444
log(f'CPU bits: {cpu_bits()}')
2445
2446
log(f'sys.argv ({len(sys.argv)}):')
0 commit comments