Issue 31053: Unnecessary argument in command example (original) (raw)
This issue has been migrated to GitHub: https://github.com/python/cpython/issues/75236
classification
Title: | Unnecessary argument in command example | ||
---|---|---|---|
Type: | behavior | Stage: | resolved |
Components: | Documentation | Versions: | Python 3.7, Python 3.6 |
process
Status: | closed | Resolution: | fixed |
---|---|---|---|
Dependencies: | Superseder: | ||
Assigned To: | docs@python | Nosy List: | berker.peksag, cocoatomo, docs@python |
Priority: | normal | Keywords: | patch |
Created on 2017-07-27 01:17 by cocoatomo, last changed 2022-04-11 14:58 by admin. This issue is now closed.
Pull Requests | |||
---|---|---|---|
URL | Status | Linked | Edit |
PR 2907 | merged | cocoatomo,2017-07-27 01:20 | |
PR 4144 | merged | python-dev,2017-10-27 04:42 |
Messages (4) | ||
---|---|---|
msg299282 - (view) | Author: Tomohiko Kinebuchi (cocoatomo) * | Date: 2017-07-27 01:17 |
The command example running venv module for Windows has an unnecessary argument. The following two command examples should be equivalent:: :: c:\>c:\Python35\python -m venv c:\path\to\myenv :: c:\>python -m venv myenv c:\path\to\myenv (from https://docs.python.org/3/library/venv.html#creating-virtual-environments) | ||
msg305100 - (view) | Author: Berker Peksag (berker.peksag) * ![]() |
Date: 2017-10-27 04:42 |
New changeset d609b0c24ebdb748cabcc6c062dfc86f9000e6c4 by Berker Peksag (cocoatomo) in branch 'master': bpo-31053: Remove redundant 'venv' argument in venv example (GH-2907) https://github.com/python/cpython/commit/d609b0c24ebdb748cabcc6c062dfc86f9000e6c4 | ||
msg305101 - (view) | Author: Berker Peksag (berker.peksag) * ![]() |
Date: 2017-10-27 04:47 |
New changeset 37d1d967eed4018ef397dd9d1515683e5b6b55e7 by Berker Peksag (Miss Islington (bot)) in branch '3.6': bpo-31053: Remove redundant 'venv' argument in venv example (GH-2907) https://github.com/python/cpython/commit/37d1d967eed4018ef397dd9d1515683e5b6b55e7 | ||
msg305102 - (view) | Author: Berker Peksag (berker.peksag) * ![]() |
Date: 2017-10-27 04:47 |
Thank you! |
History | |||
---|---|---|---|
Date | User | Action | Args |
2022-04-11 14:58:49 | admin | set | github: 75236 |
2017-10-27 04:47:45 | berker.peksag | set | status: open -> closedtype: behaviormessages: + resolution: fixedstage: patch review -> resolved |
2017-10-27 04:47:02 | berker.peksag | set | messages: + |
2017-10-27 04:42:33 | python-dev | set | keywords: + patchstage: patch reviewpull_requests: + <pull%5Frequest4110> |
2017-10-27 04:42:18 | berker.peksag | set | nosy: + berker.peksagmessages: + |
2017-07-27 01:20:02 | cocoatomo | set | pull_requests: + <pull%5Frequest2958> |
2017-07-27 01:17:36 | cocoatomo | create |