diff options
Diffstat (limited to 'Doc/library/venv.rst')
-rw-r--r-- | Doc/library/venv.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/venv.rst b/Doc/library/venv.rst index 461c9e1..d29a957 100644 --- a/Doc/library/venv.rst +++ b/Doc/library/venv.rst @@ -107,7 +107,8 @@ creation according to their needs, the :class:`EnvBuilder` class. upgraded in-place (defaults to ``False``). * ``with_pip`` -- a Boolean value which, if true, ensures pip is - installed in the virtual environment + installed in the virtual environment. This uses :mod:`ensurepip` with + the ``--default-pip`` option. .. versionchanged:: 3.4 Added the ``with_pip`` parameter |