[issue31053] Unnecessary argument in command example

2017-10-26 Thread Berker Peksag
Berker Peksag added the comment: Thank you! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed type: -> behavior ___ Python tracker ___ __

[issue31053] Unnecessary argument in command example

2017-10-26 Thread Berker Peksag
Berker Peksag added the comment: 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/37d1d967eed4018ef397dd9d1515683e5b6b55

[issue31053] Unnecessary argument in command example

2017-10-26 Thread Roundup Robot
Change by Roundup Robot : -- keywords: +patch pull_requests: +4110 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-lis

[issue31053] Unnecessary argument in command example

2017-10-26 Thread Berker Peksag
Berker Peksag added the comment: 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 ---

[issue31053] Unnecessary argument in command example

2017-07-26 Thread KINEBUCHI Tomohiko
Changes by KINEBUCHI Tomohiko : -- pull_requests: +2958 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue31053] Unnecessary argument in command example

2017-07-26 Thread KINEBUCHI Tomohiko
New submission from KINEBUCHI Tomohiko: 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 http