[Python-checkins] cpython (merge 3.5 -> default): merge from 3.5

senthil.kumaran python-checkins at python.org
Tue May 17 23:51:32 EDT 2016


https://hg.python.org/cpython/rev/2173063cbae8
changeset:   101423:2173063cbae8
parent:      101421:ebef33c35678
parent:      101422:e6e35ff744fe
user:        Senthil Kumaran <senthil at uthcode.com>
date:        Tue May 17 20:51:15 2016 -0700
summary:
  merge from 3.5

issue27045 - Use backslash in windows path to script file.

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