summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorDustin Rodrigues <dust.rod@gmail.com>2022-04-13 08:07:10 (GMT)
committerGitHub <noreply@github.com>2022-04-13 08:07:10 (GMT)
commit54f67ad54366f1b9161edca283e19670e065e1b8 (patch)
treefee5547567a1f702cd3b6187883e27163b7df22d /Misc
parent15537c51c188a6633248c25d211d5216e673aee3 (diff)
downloadcpython-54f67ad54366f1b9161edca283e19670e065e1b8.zip
cpython-54f67ad54366f1b9161edca283e19670e065e1b8.tar.gz
cpython-54f67ad54366f1b9161edca283e19670e065e1b8.tar.bz2
bpo-43218: Prevent venv creation when the target directory contains a PATH separator. (GH-24530)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2021-02-14-20-55-53.bpo-43218.VZv2M4.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-02-14-20-55-53.bpo-43218.VZv2M4.rst b/Misc/NEWS.d/next/Library/2021-02-14-20-55-53.bpo-43218.VZv2M4.rst
new file mode 100644
index 0000000..31229c3
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-02-14-20-55-53.bpo-43218.VZv2M4.rst
@@ -0,0 +1,2 @@
+Prevent creation of a venv whose path contains the PATH separator. This
+could affect the usage of the activate script. Patch by Dustin Rodrigues.