https://github.com/python/cpython/commit/b4a160ac594f4176456df2d929c41ef97aaf1930 commit: b4a160ac594f4176456df2d929c41ef97aaf1930 branch: 3.13 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: vstinner <vstin...@python.org> date: 2025-04-25T10:41:40Z summary:
[3.13] gh-132415: Use shutil.which() in missing_compiler_executable() (GH-132906) (#132916) gh-132415: Use shutil.which() in missing_compiler_executable() (GH-132906) 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 <vstin...@python.org> files: M Lib/test/support/__init__.py diff --git a/Lib/test/support/__init__.py b/Lib/test/support/__init__.py index 78cf4b3ca8a788..a21b1e70d70164 100644 --- a/Lib/test/support/__init__.py +++ b/Lib/test/support/__init__.py @@ -1893,8 +1893,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) @@ -1913,7 +1914,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] _______________________________________________ Python-checkins mailing list -- python-checkins@python.org To unsubscribe send an email to python-checkins-le...@python.org https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: arch...@mail-archive.com