summaryrefslogtreecommitdiffstats
path: root/Doc/using
diff options
context:
space:
mode:
authorDerek Keeler <d3r3kk@users.noreply.github.com>2019-07-26 21:57:11 (GMT)
committerSteve Dower <steve.dower@python.org>2019-07-26 21:57:11 (GMT)
commit91e49575095ca16d1b67dd8822deeb7885e421da (patch)
tree12404cc85b9145c6a601de386ab4cbf7423f6640 /Doc/using
parent9d9893a1c85e07f7369c848acb0aed3b8fe6c3af (diff)
downloadcpython-91e49575095ca16d1b67dd8822deeb7885e421da.zip
cpython-91e49575095ca16d1b67dd8822deeb7885e421da.tar.gz
cpython-91e49575095ca16d1b67dd8822deeb7885e421da.tar.bz2
bpo-32910: Remove implementation detail in venv documentation. (GH-14968)
Diffstat (limited to 'Doc/using')
-rw-r--r--Doc/using/venv-create.inc6
1 files changed, 2 insertions, 4 deletions
diff --git a/Doc/using/venv-create.inc b/Doc/using/venv-create.inc
index 46bf0b4..cf5af43 100644
--- a/Doc/using/venv-create.inc
+++ b/Doc/using/venv-create.inc
@@ -123,10 +123,8 @@ installed in a virtual environment should be runnable without activating it,
and run with the virtual environment's Python automatically.
You can deactivate a virtual environment by typing "deactivate" in your shell.
-The exact mechanism is platform-specific: for example, the Bash activation
-script defines a "deactivate" function, whereas on Windows there are separate
-scripts called ``deactivate.bat`` and ``Deactivate.ps1`` which are installed
-when the virtual environment is created.
+The exact mechanism is platform-specific and is an internal implementation
+detail (typically a script or shell function will be used).
.. versionadded:: 3.4
``fish`` and ``csh`` activation scripts.