https://github.com/python/cpython/commit/46fe8e38c4ad82f6a85c23e2f52e85badc219b9c
commit: 46fe8e38c4ad82f6a85c23e2f52e85badc219b9c
branch: 3.13
author: Facundo Batista <facu...@taniquetil.com.ar>
committer: vsajip <vinay_sa...@yahoo.co.uk>
date: 2025-07-17T11:25:31+01:00
summary:

[3.13] Improved venv docs to indicate that isolation is the default. 
(GH-136698) (GH-136725)

(cherry picked from commit 8e2f4b448380b4c835442534d566618f06e32573)

files:
M Doc/library/venv.rst

diff --git a/Doc/library/venv.rst b/Doc/library/venv.rst
index 1f9a5e6e06c823..224f497dde7c65 100644
--- a/Doc/library/venv.rst
+++ b/Doc/library/venv.rst
@@ -22,9 +22,9 @@ The :mod:`!venv` module supports creating lightweight 
"virtual environments",
 each with their own independent set of Python packages installed in
 their :mod:`site` directories.
 A virtual environment is created on top of an existing
-Python installation, known as the virtual environment's "base" Python, and may
-optionally be isolated from the packages in the base environment,
-so only those explicitly installed in the virtual environment are available.
+Python installation, known as the virtual environment's "base" Python, and by
+default is isolated from the packages in the base environment, so
+that only those explicitly installed in the virtual environment are available.
 
 When used from within a virtual environment, common installation tools such as
 :pypi:`pip` will install Python packages into a virtual environment

_______________________________________________
Python-checkins mailing list -- python-checkins@python.org
To unsubscribe send an email to python-checkins-le...@python.org
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: arch...@mail-archive.com

Reply via email to