This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: A possible misleading expression in the Virtual Environment Tutorial
Type: behavior Stage: patch review
Components: Documentation Versions: Python 3.9
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: docs@python Nosy List: cmhzc, docs@python, kamilturek, miss-islington
Priority: normal Keywords: patch

Created on 2021-02-25 08:31 by cmhzc, last changed 2022-04-11 14:59 by admin.

Pull Requests
URL Status Linked Edit
PR 24740 merged cmhzc, 2021-03-04 04:39
Messages (2)
msg387652 - (view) Author: cmhzc (cmhzc) * Date: 2021-02-25 08:36
According to the official tutorial on virtual environment,

"""
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.
"""

But according to PEP 405 and the actual behavior of venv, the standard library won't be copied. I'm not sure if I'm having a misunderstanding of this expression.
msg388228 - (view) Author: miss-islington (miss-islington) Date: 2021-03-07 09:08
New changeset 8d00462850b32da4649c3403692ed5515e6a96d1 by cmhzc in branch 'master':
bpo-43319: Fixed the tutorial on venv about standard library (GH-24740)
https://github.com/python/cpython/commit/8d00462850b32da4649c3403692ed5515e6a96d1
History
Date User Action Args
2022-04-11 14:59:41adminsetgithub: 87485
2021-03-07 13:57:41kamiltureksetnosy: + kamilturek
2021-03-07 09:08:58miss-islingtonsetnosy: + miss-islington
messages: + msg388228
2021-03-04 04:39:37cmhzcsetkeywords: + patch
stage: patch review
pull_requests: + pull_request23511
2021-02-28 08:27:51cmhzcsettype: enhancement -> behavior
2021-02-25 08:36:12cmhzcsetmessages: + msg387652
2021-02-25 08:31:46cmhzccreate