Skip to content

Commit 46fe8e3

Browse files
[3.13] Improved venv docs to indicate that isolation is the default. (GH-136698) (GH-136725)
(cherry picked from commit 8e2f4b4)
1 parent 8832239 commit 46fe8e3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Doc/library/venv.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ The :mod:`!venv` module supports creating lightweight "virtual environments",
2222
each with their own independent set of Python packages installed in
2323
their :mod:`site` directories.
2424
A virtual environment is created on top of an existing
25-
Python installation, known as the virtual environment's "base" Python, and may
26-
optionally be isolated from the packages in the base environment,
27-
so only those explicitly installed in the virtual environment are available.
25+
Python installation, known as the virtual environment's "base" Python, and by
26+
default is isolated from the packages in the base environment, so
27+
that only those explicitly installed in the virtual environment are available.
2828

2929
When used from within a virtual environment, common installation tools such as
3030
:pypi:`pip` will install Python packages into a virtual environment

0 commit comments

Comments
 (0)