blob: 123e704baed4260658c7bef3c3fea6f6b749c36a [file] [log] [blame]
Georg Brandl49857f82011-03-05 15:11:35 +01001@echo off
2rem start idle
3rem Usage: idle [-d]
4rem -d Run Debug build (python_d.exe). Else release build.
5
6setlocal
7set exe=python
8PATH %PATH%;..\..\..\tcltk\bin
9
10if "%1"=="-d" (set exe=python_d) & shift
11
12set cmd=%exe% ../../Lib/idlelib/idle.py %1 %2 %3 %4 %5 %6 %7 %8 %9
13
14echo on
15%cmd%