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: 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) * (Python committer) 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) * (Python committer) 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) * (Python committer) Date: 2017-10-27 04:47
Thank you!
History
Date User Action Args
2022-04-11 14:58:49adminsetgithub: 75236
2017-10-27 04:47:45berker.peksagsetstatus: open -> closed
type: behavior
messages: + msg305102

resolution: fixed
stage: patch review -> resolved
2017-10-27 04:47:02berker.peksagsetmessages: + msg305101
2017-10-27 04:42:33python-devsetkeywords: + patch
stage: patch review
pull_requests: + pull_request4110
2017-10-27 04:42:18berker.peksagsetnosy: + berker.peksag
messages: + msg305100
2017-07-27 01:20:02cocoatomosetpull_requests: + pull_request2958
2017-07-27 01:17:36cocoatomocreate