]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.12] gh-132415: Use shutil.which() in missing_compiler_executable() (GH-132906...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 11 Jun 2025 15:00:01 +0000 (17:00 +0200)
committerGitHub <noreply@github.com>
Wed, 11 Jun 2025 15:00:01 +0000 (17:00 +0200)
Replace deprecated distutils.spawn.find_executable() with
shutil.which() in missing_compiler_executable() of test.support.
(cherry picked from commit de6482eda3a46cc9c9a03fb9ba57295ab99b4722)

Co-authored-by: Victor Stinner <vstinner@python.org>
Lib/test/support/__init__.py

index c8993476240de1ee73683687ce12dc832c14117e..eb971abceb010c6b1c0ca734569dbc4b7690aa9d 100644 (file)
@@ -1804,8 +1804,9 @@ def missing_compiler_executable(cmd_names=[]):
     missing.
 
     """
-    from setuptools._distutils import ccompiler, sysconfig, spawn
+    from setuptools._distutils import ccompiler, sysconfig
     from setuptools import errors
+    import shutil
 
     compiler = ccompiler.new_compiler()
     sysconfig.customize_compiler(compiler)
@@ -1824,7 +1825,7 @@ def missing_compiler_executable(cmd_names=[]):
                     "the '%s' executable is not configured" % name
         elif not cmd:
             continue
-        if spawn.find_executable(cmd[0]) is None:
+        if shutil.which(cmd[0]) is None:
             return cmd[0]