summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorDavid Foster <david@dafoster.net>2022-05-19 14:47:16 (GMT)
committerGitHub <noreply@github.com>2022-05-19 14:47:16 (GMT)
commit30deeac64925effe46cb5f1cd091ccb4c850ce83 (patch)
tree14679d94703b68cd29fe7bed4f6de51ce5777c65 /Misc
parent6b51773afd5658e15d23ce220f66fcc39c02dcae (diff)
downloadcpython-30deeac64925effe46cb5f1cd091ccb4c850ce83.zip
cpython-30deeac64925effe46cb5f1cd091ccb4c850ce83.tar.gz
cpython-30deeac64925effe46cb5f1cd091ccb4c850ce83.tar.bz2
gh-92675: venv: Fix ensure_directories() to again accept a Path for env_dir (#92676)
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com> Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2022-05-19-13-33-18.gh-issue-92675.ZeerMZ.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-05-19-13-33-18.gh-issue-92675.ZeerMZ.rst b/Misc/NEWS.d/next/Library/2022-05-19-13-33-18.gh-issue-92675.ZeerMZ.rst
new file mode 100644
index 0000000..6adc024
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2022-05-19-13-33-18.gh-issue-92675.ZeerMZ.rst
@@ -0,0 +1,2 @@
+Fix :func:`venv.ensure_directories` to accept :class:`pathlib.Path` arguments
+in addition to :class:`str` paths. Patch by David Foster.