diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2015-04-13 17:11:40 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2015-04-13 17:11:40 (GMT) |
commit | 774ac377daf0da8eaddc578d883cd2002cb7a6a4 (patch) | |
tree | 1f7931b0ce49dd62621846ba61ccf3f4280386bb /PCbuild/idle.bat | |
parent | 9c680b07285867844927871ddcbf60c93e786e1f (diff) | |
parent | 4c9c848159b63fac440c29ffc2b437e055d355cc (diff) | |
download | cpython-774ac377daf0da8eaddc578d883cd2002cb7a6a4.zip cpython-774ac377daf0da8eaddc578d883cd2002cb7a6a4.tar.gz cpython-774ac377daf0da8eaddc578d883cd2002cb7a6a4.tar.bz2 |
Closes #17202: Merge with 3.4
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 1978b99..bacaaa8 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%
|