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 7e84118 commit 49f8d89Copy full SHA for 49f8d89
1 file changed
Lib/test/support/__init__.py
@@ -880,7 +880,8 @@ def check_bolt_optimized():
880
with warnings.catch_warnings():
881
# ignore DeprecationWarning on sys.abiflags change on Windows
882
warnings.simplefilter('ignore', DeprecationWarning)
883
- HAS_SYS_ABIFLAGS = hasattr(sys, 'abiflags') # equal to `not sys.platform.startswith('win')`
+ # Equal to `not sys.platform.startswith('win')` prior to 3.16
884
+ HAS_SYS_ABIFLAGS = hasattr(sys, 'abiflags')
885
886
887
Py_GIL_DISABLED = bool(sysconfig.get_config_var('Py_GIL_DISABLED'))
0 commit comments