diff options
author | Steve Dower <steve.dower@python.org> | 2024-04-15 14:36:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-15 14:36:06 (GMT) |
commit | 185999bb3ad3f1484da8fa4b84813980b976dc3c (patch) | |
tree | d288110bc9bac2e1459443a9a9d34ce12ac663b8 /Misc/NEWS.d/next/Windows | |
parent | 64cd6fc9a6a3c3c19091a1c81cbbe8994583017d (diff) | |
download | cpython-185999bb3ad3f1484da8fa4b84813980b976dc3c.zip cpython-185999bb3ad3f1484da8fa4b84813980b976dc3c.tar.gz cpython-185999bb3ad3f1484da8fa4b84813980b976dc3c.tar.bz2 |
gh-90329: Add _winapi.GetLongPathName and GetShortPathName and use in venv to reduce warnings (GH-117817)
Diffstat (limited to 'Misc/NEWS.d/next/Windows')
-rw-r--r-- | Misc/NEWS.d/next/Windows/2024-04-12-14-02-58.gh-issue-90329.YpEeaO.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Windows/2024-04-12-14-02-58.gh-issue-90329.YpEeaO.rst b/Misc/NEWS.d/next/Windows/2024-04-12-14-02-58.gh-issue-90329.YpEeaO.rst new file mode 100644 index 0000000..7242428 --- /dev/null +++ b/Misc/NEWS.d/next/Windows/2024-04-12-14-02-58.gh-issue-90329.YpEeaO.rst @@ -0,0 +1,5 @@ +Suppress the warning displayed on virtual environment creation when the +requested and created paths differ only by a short (8.3 style) name. +Warnings will continue to be shown if a junction or symlink in the path +caused the venv to be created in a different location than originally +requested. |