summaryrefslogtreecommitdiffstats
path: root/Doc/library/venv.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-11-29 10:19:53 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-11-29 10:19:53 (GMT)
commit0e90e99188d6fb54c3f5b31a0488318d9c38309d (patch)
treebaeb9819ae83194653cd3c3d4760a6c19c787a4d /Doc/library/venv.rst
parent567eba1852ed89e5cf93dbce33f7e2ca73e8f05d (diff)
parentfbc1c268031a9c8fad65f49c8381b6145bd66ffc (diff)
downloadcpython-0e90e99188d6fb54c3f5b31a0488318d9c38309d.zip
cpython-0e90e99188d6fb54c3f5b31a0488318d9c38309d.tar.gz
cpython-0e90e99188d6fb54c3f5b31a0488318d9c38309d.tar.bz2
Issue #19795: Improved markup of True/False constants.
Diffstat (limited to 'Doc/library/venv.rst')
-rw-r--r--Doc/library/venv.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/venv.rst b/Doc/library/venv.rst
index efc2137..461c9e1 100644
--- a/Doc/library/venv.rst
+++ b/Doc/library/venv.rst
@@ -94,7 +94,7 @@ creation according to their needs, the :class:`EnvBuilder` class.
* ``system_site_packages`` -- a Boolean value indicating that the system Python
site-packages should be available to the environment (defaults to ``False``).
- * ``clear`` -- a Boolean value which, if True, will delete the contents of
+ * ``clear`` -- a Boolean value which, if true, will delete the contents of
any existing target directory, before creating the environment.
* ``symlinks`` -- a Boolean value indicating whether to attempt to symlink the
@@ -102,11 +102,11 @@ creation according to their needs, the :class:`EnvBuilder` class.
e.g. ``pythonw.exe``), rather than copying. Defaults to ``True`` on Linux and
Unix systems, but ``False`` on Windows.
- * ``upgrade`` -- a Boolean value which, if True, will upgrade an existing
+ * ``upgrade`` -- a Boolean value which, if true, will upgrade an existing
environment with the running Python - for use when that Python has been
upgraded in-place (defaults to ``False``).
- * ``with_pip`` -- a Boolean value which, if True, ensures pip is
+ * ``with_pip`` -- a Boolean value which, if true, ensures pip is
installed in the virtual environment
.. versionchanged:: 3.4