[Python-checkins] cpython (3.5): Issue #27393: Fix escaping of C:\ too

berker.peksag python-checkins at python.org
Mon Jun 27 06:09:40 EDT 2016


https://hg.python.org/cpython/rev/b82149953a8c
changeset:   102208:b82149953a8c
branch:      3.5
parent:      102206:fd1236294b88
user:        Berker Peksag <berker.peksag at gmail.com>
date:        Mon Jun 27 13:10:47 2016 +0300
summary:
  Issue #27393: Fix escaping of C:\ too

files:
  Doc/using/venv-create.inc |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Doc/using/venv-create.inc b/Doc/using/venv-create.inc
--- a/Doc/using/venv-create.inc
+++ b/Doc/using/venv-create.inc
@@ -89,9 +89,9 @@
 +-------------+-----------------+-----------------------------------------+
 |             | csh/tcsh        | $ source <venv>/bin/activate.csh        |
 +-------------+-----------------+-----------------------------------------+
-| Windows     | cmd.exe         | C:\> <venv>\\Scripts\\activate.bat      |
+| Windows     | cmd.exe         | C:\\> <venv>\\Scripts\\activate.bat     |
 +-------------+-----------------+-----------------------------------------+
-|             | PowerShell      | PS C:\> <venv>\\Scripts\\Activate.ps1   |
+|             | PowerShell      | PS C:\\> <venv>\\Scripts\\Activate.ps1  |
 +-------------+-----------------+-----------------------------------------+
 
 You don't specifically *need* to activate an environment; activation just

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list