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.

Author cocoatomo
Recipients cocoatomo, docs@python
Date 2017-07-27.01:17:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1501118256.7.0.957994269182.issue31053@psf.upfronthosting.co.za>
In-reply-to
Content
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)
History
Date User Action Args
2017-07-27 01:17:36cocoatomosetrecipients: + cocoatomo, docs@python
2017-07-27 01:17:36cocoatomosetmessageid: <1501118256.7.0.957994269182.issue31053@psf.upfronthosting.co.za>
2017-07-27 01:17:36cocoatomolinkissue31053 messages
2017-07-27 01:17:35cocoatomocreate