Update output of venv -h

* Update description of the --system-site-packages option
* Show --copies option in the usage
This commit is contained in:
Berker Peksag 2016-01-30 12:17:29 +02:00
commit f108a58365
1 changed files with 5 additions and 4 deletions

View File

@ -29,8 +29,9 @@ or equivalently::
The command, if run with ``-h``, will show the available options:: The command, if run with ``-h``, will show the available options::
usage: venv [-h] [--system-site-packages] [--symlinks] [--clear] usage: venv [-h] [--system-site-packages] [--symlinks | --copies] [--clear]
[--upgrade] [--without-pip] ENV_DIR [ENV_DIR ...] [--upgrade] [--without-pip]
ENV_DIR [ENV_DIR ...]
Creates virtual Python environments in one or more target directories. Creates virtual Python environments in one or more target directories.
@ -39,8 +40,8 @@ The command, if run with ``-h``, will show the available options::
optional arguments: optional arguments:
-h, --help show this help message and exit -h, --help show this help message and exit
--system-site-packages Give access to the global site-packages dir to the --system-site-packages Give the virtual environment access to the system
virtual environment. site-packages dir.
--symlinks Try to use symlinks rather than copies, when symlinks --symlinks Try to use symlinks rather than copies, when symlinks
are not the default for the platform. are not the default for the platform.
--copies Try to use copies rather than symlinks, even when --copies Try to use copies rather than symlinks, even when