Skip to content

Commit b24919b

Browse files
committed
👹 Feed the hobgoblins (delint).
1 parent be28187 commit b24919b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

‎distutils/command/build_ext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
)
2424
from ..extension import Extension
2525
from ..sysconfig import customize_compiler, get_config_h_filename, get_python_version
26-
from ..util import get_platform, is_mingw, is_freethreaded
26+
from ..util import get_platform, is_freethreaded, is_mingw
2727

2828
# An extension name is just a dot-separated list of Python NAMEs (ie.
2929
# the same as a fully-qualified module name).

‎distutils/util.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -504,6 +504,7 @@ def is_mingw():
504504
"""
505505
return sys.platform == 'win32' and get_platform().startswith('mingw')
506506

507+
507508
def is_freethreaded():
508509
"""Return True if the Python interpreter is built with free threading support."""
509510
return bool(sysconfig.get_config_var('Py_GIL_DISABLED'))

0 commit comments

Comments
 (0)