]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Update output of venv -h
authorBerker Peksag <berker.peksag@gmail.com>
Sat, 30 Jan 2016 10:17:10 +0000 (12:17 +0200)
committerBerker Peksag <berker.peksag@gmail.com>
Sat, 30 Jan 2016 10:17:10 +0000 (12:17 +0200)
* Update description of the --system-site-packages option
* Show --copies option in the usage

Doc/using/venv-create.inc

index 0873a993c28f9c1e9ed262c6c150cf2a9bd1b156..ebce8c3c4d18e51b9a3550d016abbe9a80c8f973 100644 (file)
@@ -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