repo.or.cz
/
python.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
use stack macros
[python.git]
/
PC
/
VS8.0
/
idle.bat
blob
274ae1a9f21cf0b9a3205a29aff2dec567c4ab79
1
@echo off
\r
2
rem start idle
\r
3
rem Usage: idle [-d]
\r
4
rem -d Run Debug build (python_d.exe). Else release build.
\r
5
\r
6
setlocal
\r
7
set exe=python
\r
8
PATH %PATH%;..\..\..\tcltk\bin
\r
9
\r
10
if "%1"=="-d" (set exe=python_d) & shift
\r
11
\r
12
set cmd=%exe% ../../Lib/idlelib/idle.py %1 %2 %3 %4 %5 %6 %7 %8 %9
\r
13
\r
14
echo on
\r
15
%cmd%
\r