summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorOleg Iarygin <oleg@arhadthedev.net>2023-02-08 22:12:19 (GMT)
committerGitHub <noreply@github.com>2023-02-08 22:12:19 (GMT)
commit23751ed826ee63fb486e874ec25934ea87dd8519 (patch)
tree216a34dc2d9f780eb8c3b46b22a6d232dd986907 /Misc/NEWS.d
parentde3669ebcb33ca8e3373fbbaed646c5f287979b8 (diff)
downloadcpython-23751ed826ee63fb486e874ec25934ea87dd8519.zip
cpython-23751ed826ee63fb486e874ec25934ea87dd8519.tar.gz
cpython-23751ed826ee63fb486e874ec25934ea87dd8519.tar.bz2
gh-101283: Improved fallback logic for subprocess with shell=True on Windows (GH-101286)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Security/2023-01-24-16-12-00.gh-issue-101283.9tqu39.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Security/2023-01-24-16-12-00.gh-issue-101283.9tqu39.rst b/Misc/NEWS.d/next/Security/2023-01-24-16-12-00.gh-issue-101283.9tqu39.rst
new file mode 100644
index 0000000..0efdfa1
--- /dev/null
+++ b/Misc/NEWS.d/next/Security/2023-01-24-16-12-00.gh-issue-101283.9tqu39.rst
@@ -0,0 +1,3 @@
+:class:`subprocess.Popen` now uses a safer approach to find
+``cmd.exe`` when launching with ``shell=True``. Patch by Eryk Sun,
+based on a patch by Oleg Iarygin.