diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-01-30 10:17:10 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-01-30 10:17:10 (GMT) |
commit | a9744aebc89a86ce005170f79f70e95d3bbfa130 (patch) | |
tree | a12d412354f9e49ecda9d114bd8a43ff8682066c | |
parent | b5944220abaa525d326b6054b213adcdb26e7fda (diff) | |
download | cpython-a9744aebc89a86ce005170f79f70e95d3bbfa130.zip cpython-a9744aebc89a86ce005170f79f70e95d3bbfa130.tar.gz cpython-a9744aebc89a86ce005170f79f70e95d3bbfa130.tar.bz2 |
Update output of venv -h
* Update description of the --system-site-packages option
* Show --copies option in the usage
-rw-r--r-- | Doc/using/venv-create.inc | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Doc/using/venv-create.inc b/Doc/using/venv-create.inc index 0873a99..ebce8c3 100644 --- a/Doc/using/venv-create.inc +++ b/Doc/using/venv-create.inc @@ -29,8 +29,9 @@ or equivalently:: The command, if run with ``-h``, will show the available options:: - usage: venv [-h] [--system-site-packages] [--symlinks] [--clear] - [--upgrade] [--without-pip] ENV_DIR [ENV_DIR ...] + usage: venv [-h] [--system-site-packages] [--symlinks | --copies] [--clear] + [--upgrade] [--without-pip] + ENV_DIR [ENV_DIR ...] 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: -h, --help show this help message and exit - --system-site-packages Give access to the global site-packages dir to the - virtual environment. + --system-site-packages Give the virtual environment access to the system + site-packages dir. --symlinks Try to use symlinks rather than copies, when symlinks are not the default for the platform. --copies Try to use copies rather than symlinks, even when |