summaryrefslogtreecommitdiffstats
path: root/Lib/test/pythoninfo.py
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2019-01-16 22:38:06 (GMT)
committerGitHub <noreply@github.com>2019-01-16 22:38:06 (GMT)
commit8c349565e8a442e17f1a954d1a9996847749d778 (patch)
treeafcf4294d4949a59dc2d3383e11b5c2b91970597 /Lib/test/pythoninfo.py
parent07858894689047c77f9c12ddc061d30681368d19 (diff)
downloadcpython-8c349565e8a442e17f1a954d1a9996847749d778.zip
cpython-8c349565e8a442e17f1a954d1a9996847749d778.tar.gz
cpython-8c349565e8a442e17f1a954d1a9996847749d778.tar.bz2
Revert "bpo-35537: subprocess can now use os.posix_spawnp (GH-11579)" (GH-11582)
This reverts commit 07858894689047c77f9c12ddc061d30681368d19.
Diffstat (limited to 'Lib/test/pythoninfo.py')
-rw-r--r--Lib/test/pythoninfo.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/test/pythoninfo.py b/Lib/test/pythoninfo.py
index 93d87be..7e94a31 100644
--- a/Lib/test/pythoninfo.py
+++ b/Lib/test/pythoninfo.py
@@ -612,8 +612,7 @@ def collect_get_config(info_add):
def collect_subprocess(info_add):
import subprocess
- attrs = ('_USE_POSIX_SPAWN', '_HAVE_POSIX_SPAWNP')
- copy_attributes(info_add, subprocess, 'subprocess.%s', attrs)
+ copy_attributes(info_add, subprocess, 'subprocess.%s', ('_USE_POSIX_SPAWN',))
def collect_info(info):