summaryrefslogtreecommitdiffstats
path: root/Lib/venv/scripts/nt/activate.bat
Commit message (Collapse)AuthorAgeFilesLines
* bpo-38344: Fix syntax in activate.bat (GH-16533)Miss Islington (bot)2019-10-071-1/+1
| | | | | (cherry picked from commit e310af9e2941c2fbb7370e003276cc37eb230f16) Co-authored-by: James Abel <j@abel.co>
* bpo-36634: Fixes activate.bat when existing values contain double quotes ↵Miss Islington (bot)2019-09-111-25/+13
| | | | | | | (GH-15924) (cherry picked from commit 574b324bdc9a126b5a4488c3613f11ad2555415e) Co-authored-by: Steve Dower <steve.dower@python.org>
* bpo-34144: Fix of venv acvtivate.bat for win 10 (GH-8321)Miss Islington (bot)2019-05-211-1/+1
| | | | | | | | The script needs to be updated to support win 10/ 1803 chcp.com command (output has trailing dot) https://bugs.python.org/issue34144 (cherry picked from commit 6955d44b41058e3bcc59ff41860bd4cc8948c441) Co-authored-by: Lorenz Mende <Lorenz.mende@gmail.com>
* Revert "bpo-32409: Fix regression in activate.bat on international Windows ↵Miss Islington (bot)2018-11-081-5/+6
| | | | | | | | (GH-10295)" (GH-10403) This reverts commit c64583b6d3e8516a8cd2b5f84fc1e300bfac2206 due to multiple buildbot failures when building it. (cherry picked from commit 6843ffe4533e9f2cde036296fd932fef6f059687) Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
* bpo-32409: Fix regression in activate.bat on international Windows ↵Miss Islington (bot)2018-11-071-6/+5
| | | | | | | | | | | | | | | | (GH-10295) (GH-10377) Handle Unicode contents on localised Windows systems when activating a venv. activate.bat currently breaks on German Windows systems, as chcp.com does not return a plain number as on English systems, but (arbitrarily) appends a dot at the end (for example "Aktive Codepage: 850." instead of "Active Codepage: 850"). The dependency to chcp.com is removed and ctypes is used to get, set and restore the console output code page. The code page for console input is not changed. We can't use __VENV_PYTHON__ to find python.exe, since it's UTF-8. cmd.exe decodes the script using the console output code page. (cherry picked from commit c64583b6d3e8516a8cd2b5f84fc1e300bfac2206) Co-authored-by: samstagern <30337691+samstagern@users.noreply.github.com>
* bpo-32409: Ensures activate.bat can handle Unicode contents (GH-5765)Miss Islington (bot)2018-02-201-0/+13
| | | | | (cherry picked from commit 6240917b773b52f8883387b9e3a5f327a4372068) Co-authored-by: Steve Dower <steve.dower@microsoft.com>
* bpo-27425: Be more explicit in .gitattributes (GH-840)Zachary Ware2017-06-101-32/+32
| | | Updates checked-in line endings on several files.
* Closes #19139: Changed usage of __VENV_NAME__ and added __VENV_PROMPT__.Vinay Sajip2013-10-021-1/+1
|
* Issue #17743: Now use extended syntax of set command in .bat files.Vinay Sajip2013-05-201-13/+14
|
* Implemented PEP 405 (Python virtual environments).Vinay Sajip2012-05-261-0/+31