diff options
author | Christian Heimes <christian@cheimes.de> | 2007-12-31 15:18:55 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2007-12-31 15:18:55 (GMT) |
commit | 3adfe9aaae214dbee36e9b1ba4753997bfe9ae05 (patch) | |
tree | f70ac325e8ec9d412ad83133a2c5f24d58c4944f /PCbuild/idle.bat | |
parent | ce49f020638588f0d4ad3c9b5b139821372f0d4f (diff) | |
download | cpython-3adfe9aaae214dbee36e9b1ba4753997bfe9ae05.zip cpython-3adfe9aaae214dbee36e9b1ba4753997bfe9ae05.tar.gz cpython-3adfe9aaae214dbee36e9b1ba4753997bfe9ae05.tar.bz2 |
Renamed PCBuild9 directory to PCBuild
Diffstat (limited to 'PCbuild/idle.bat')
-rw-r--r-- | PCbuild/idle.bat | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/PCbuild/idle.bat b/PCbuild/idle.bat new file mode 100644 index 0000000..dcb0485 --- /dev/null +++ b/PCbuild/idle.bat @@ -0,0 +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=python +PATH %PATH%;..\..\tcltk\bin + +if "%1"=="-d" (set exe=python_d) & shift + +set cmd=%exe% ../Lib/idlelib/idle.py %1 %2 %3 %4 %5 %6 %7 %8 %9 + +echo on +%cmd% |