Zachary Ware | 4c9c848 | 2015-04-13 11:59:54 -0500 | [diff] [blame] | 1 | @echo off
|
| 2 | rem start idle
|
| 3 | rem Usage: idle [-d]
|
| 4 | rem -d Run Debug build (python_d.exe). Else release build.
|
| 5 |
|
| 6 | setlocal
|
Zachary Ware | 774ac37 | 2015-04-13 12:11:40 -0500 | [diff] [blame] | 7 | set exe=win32\python
|
| 8 | PATH %PATH%;..\externals\tcltk\bin
|
Zachary Ware | 4c9c848 | 2015-04-13 11:59:54 -0500 | [diff] [blame] | 9 |
|
Zachary Ware | 774ac37 | 2015-04-13 12:11:40 -0500 | [diff] [blame] | 10 | if "%1"=="-d" (set exe=%exe%_d) & shift
|
Zachary Ware | 4c9c848 | 2015-04-13 11:59:54 -0500 | [diff] [blame] | 11 |
|
| 12 | set cmd=%exe% ../Lib/idlelib/idle.py %1 %2 %3 %4 %5 %6 %7 %8 %9
|
| 13 |
|
| 14 | echo on
|
| 15 | %cmd%
|