https://github.com/python/cpython/commit/a62b59a96e1e4efe962dfab3278bb7c8f85c7e9f commit: a62b59a96e1e4efe962dfab3278bb7c8f85c7e9f branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: zware <[email protected]> date: 2025-09-03T20:22:05Z summary:
[3.13] Fix Windows path in `venv` docs (GH-138478) (cherry picked from commit f8d9cb140726a0167c9f733c706b834a7d273476) files: M Doc/library/venv.rst diff --git a/Doc/library/venv.rst b/Doc/library/venv.rst index 224f497dde7c65..bb1f7311551659 100644 --- a/Doc/library/venv.rst +++ b/Doc/library/venv.rst @@ -75,7 +75,7 @@ It also creates a :file:`bin` (or :file:`Scripts` on Windows) subdirectory containing a copy or symlink of the Python executable (as appropriate for the platform or arguments used at environment creation time). It also creates a :file:`lib/pythonX.Y/site-packages` subdirectory -(on Windows, this is :file:`Lib\site-packages`). +(on Windows, this is :file:`Lib\\site-packages`). If an existing directory is specified, it will be re-used. .. versionchanged:: 3.5 _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
