Skip to content

Commit 8d00462

Browse files
author
cmhzc
authored
bpo-43319: Fixed the tutorial on venv about standard library (GH-24740)
In the [official tutorial on virtual environment](https://docs.python.org/3/tutorial/venv.html#creating-virtual-environments) > This will create the tutorial-env directory if it doesn’t exist, and also create directories inside it containing a copy of the Python interpreter, **the standard library**, and various supporting files. According to the actual behavior of `venv` and [PEP 405](https://www.python.org/dev/peps/pep-0405/#id15)'s description about virtual environment, no standard library file is included in the virtual environment's directory. Automerge-Triggered-By: GH:vsajip
1 parent 8aabfa8 commit 8d00462

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/tutorial/venv.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ place it, and run the :mod:`venv` module as a script with the directory path::
4848

4949
This will create the ``tutorial-env`` directory if it doesn't exist,
5050
and also create directories inside it containing a copy of the Python
51-
interpreter, the standard library, and various supporting files.
51+
interpreter and various supporting files.
5252

5353
A common directory location for a virtual environment is ``.venv``.
5454
This name keeps the directory typically hidden in your shell and thus

0 commit comments

Comments
 (0)