blob: bacaaa8414a267ea713e271297a56d298ebc1872 [file] [log] [blame]
Zachary Ware4c9c8482015-04-13 11:59:54 -05001@echo off
2rem start idle
3rem Usage: idle [-d]
4rem -d Run Debug build (python_d.exe). Else release build.
5
6setlocal
Zachary Ware774ac372015-04-13 12:11:40 -05007set exe=win32\python
8PATH %PATH%;..\externals\tcltk\bin
Zachary Ware4c9c8482015-04-13 11:59:54 -05009
Zachary Ware774ac372015-04-13 12:11:40 -050010if "%1"=="-d" (set exe=%exe%_d) & shift
Zachary Ware4c9c8482015-04-13 11:59:54 -050011
12set cmd=%exe% ../Lib/idlelib/idle.py %1 %2 %3 %4 %5 %6 %7 %8 %9
13
14echo on
15%cmd%