diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2017-06-10 20:39:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-10 20:39:29 (GMT) |
commit | 964c261dc9a6a901f50d5596d88248bfc4251a55 (patch) | |
tree | 8fbcb674e2447f15128b085656320b28dfbcaded /PCbuild/idle.bat | |
parent | 865ed9ea67cf0d8a8dead91f3eac527553d92284 (diff) | |
download | cpython-964c261dc9a6a901f50d5596d88248bfc4251a55.zip cpython-964c261dc9a6a901f50d5596d88248bfc4251a55.tar.gz cpython-964c261dc9a6a901f50d5596d88248bfc4251a55.tar.bz2 |
[3.6] bpo-27425: Be more explicit in .gitattributes (GH-840) (GH-2083)
Also updates checked-in line endings on some files
Diffstat (limited to 'PCbuild/idle.bat')
-rw-r--r-- | PCbuild/idle.bat | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/PCbuild/idle.bat b/PCbuild/idle.bat index bacaaa8..1978b99 100644 --- a/PCbuild/idle.bat +++ b/PCbuild/idle.bat @@ -1,15 +1,15 @@ -@echo off
-rem start idle
-rem Usage: idle [-d]
-rem -d Run Debug build (python_d.exe). Else release build.
-
-setlocal
-set exe=win32\python
-PATH %PATH%;..\externals\tcltk\bin
-
-if "%1"=="-d" (set exe=%exe%_d) & shift
-
-set cmd=%exe% ../Lib/idlelib/idle.py %1 %2 %3 %4 %5 %6 %7 %8 %9
-
-echo on
-%cmd%
+@echo off +rem start idle +rem Usage: idle [-d] +rem -d Run Debug build (python_d.exe). Else release build. + +setlocal +set exe=win32\python +PATH %PATH%;..\externals\tcltk\bin + +if "%1"=="-d" (set exe=%exe%_d) & shift + +set cmd=%exe% ../Lib/idlelib/idle.py %1 %2 %3 %4 %5 %6 %7 %8 %9 + +echo on +%cmd% |