]> granicus.if.org Git - python/commitdiff
bpo-36275: enhance documentation for venv.create() (GH-13114)
authorSebastian Koslowski <sebastian.koslowski@gmail.com>
Mon, 6 May 2019 18:51:09 +0000 (14:51 -0400)
committerCheryl Sabella <cheryl.sabella@gmail.com>
Mon, 6 May 2019 18:51:09 +0000 (14:51 -0400)
Doc/library/venv.rst

index 412808ad44866d0884bda4ec23e19f09b9c2999f..4f083a3181e7a9a2ac804b3b5f7c43db61cd3cbd 100644 (file)
@@ -234,14 +234,19 @@ creation according to their needs, the :class:`EnvBuilder` class.
 There is also a module-level convenience function:
 
 .. function:: create(env_dir, system_site_packages=False, clear=False, \
-                     symlinks=False, with_pip=False)
+                     symlinks=False, with_pip=False, prompt=None)
 
     Create an :class:`EnvBuilder` with the given keyword arguments, and call its
     :meth:`~EnvBuilder.create` method with the *env_dir* argument.
 
+    .. versionadded:: 3.3
+
     .. versionchanged:: 3.4
        Added the ``with_pip`` parameter
 
+    .. versionchanged:: 3.6
+       Added the ``prompt`` parameter
+
 An example of extending ``EnvBuilder``
 --------------------------------------