]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-35537: subprocess can now use os.posix_spawnp (GH-11579)
authorVictor Stinner <vstinner@redhat.com>
Wed, 16 Jan 2019 14:26:20 +0000 (15:26 +0100)
committerGitHub <noreply@github.com>
Wed, 16 Jan 2019 14:26:20 +0000 (15:26 +0100)
The subprocess module can now use the os.posix_spawnp() function,
if it is available, to locate the program in the PATH.

Doc/whatsnew/3.8.rst
Lib/subprocess.py
Lib/test/pythoninfo.py

index 053fe902c4810dc8317a35a4649cc94321cbd5ba..05fb4ffe03bb11256a53ffe67f32bcf7586e98a8 100644 (file)
@@ -281,8 +281,7 @@ Optimizations
 
   * *close_fds* is false;
   * *preexec_fn*, *pass_fds*, *cwd*, *stdin*, *stdout*, *stderr* and
-    *start_new_session* parameters are not set;
-  * the *executable* path contains a directory.
+    *start_new_session* parameters are not set.
 
 * :func:`shutil.copyfile`, :func:`shutil.copy`, :func:`shutil.copy2`,
   :func:`shutil.copytree` and :func:`shutil.move` use platform-specific
index b94575b8401ece018055ec673125c45f4506dc4b..d63cf2050634ff9bf331c29b3bded85bbe212c9d 100644 (file)
@@ -655,6 +655,7 @@ def _use_posix_spawn():
 
 
 _USE_POSIX_SPAWN = _use_posix_spawn()
+_HAVE_POSIX_SPAWNP = hasattr(os, 'posix_spawnp')
 
 
 class Popen(object):
@@ -1442,7 +1443,10 @@ class Popen(object):
 
 
         def _posix_spawn(self, args, executable, env, restore_signals):
-            """Execute program using os.posix_spawn()."""
+            """Execute program using os.posix_spawnp().
+
+            Or use os.posix_spawn() if os.posix_spawnp() is not available.
+            """
             if env is None:
                 env = os.environ
 
@@ -1456,7 +1460,10 @@ class Popen(object):
                         sigset.append(signum)
                 kwargs['setsigdef'] = sigset
 
-            self.pid = os.posix_spawn(executable, args, env, **kwargs)
+            if _HAVE_POSIX_SPAWNP:
+                self.pid = os.posix_spawnp(executable, args, env, **kwargs)
+            else:
+                self.pid = os.posix_spawn(executable, args, env, **kwargs)
 
         def _execute_child(self, args, executable, preexec_fn, close_fds,
                            pass_fds, cwd, env,
@@ -1484,7 +1491,7 @@ class Popen(object):
                 executable = args[0]
 
             if (_USE_POSIX_SPAWN
-                    and os.path.dirname(executable)
+                    and (_HAVE_POSIX_SPAWNP or os.path.dirname(executable))
                     and preexec_fn is None
                     and not close_fds
                     and not pass_fds
index 7e94a31ceceac1e2afd225758af1e4cbe9b15c53..93d87be415883c5ca51fae5c3b0354060c15ea32 100644 (file)
@@ -612,7 +612,8 @@ def collect_get_config(info_add):
 
 def collect_subprocess(info_add):
     import subprocess
-    copy_attributes(info_add, subprocess, 'subprocess.%s', ('_USE_POSIX_SPAWN',))
+    attrs = ('_USE_POSIX_SPAWN', '_HAVE_POSIX_SPAWNP')
+    copy_attributes(info_add, subprocess, 'subprocess.%s', attrs)
 
 
 def collect_info(info):