Staging
v0.5.1
Revision 4c1b2ad44f67ed19b7acf4fc09510ec3f5d081bc authored by Miss Islington (bot) on 29 September 2018, 10:55:14 UTC, committed by GitHub on 29 September 2018, 10:55:14 UTC
(cherry picked from commit 508d8205121868ef24cca99f1f952558b1ff2f2e)

Co-authored-by: 방성범 (Bang Seongbeom) <bangseongbeom@hotmail.com>
1 parent 758ad54
Raw File
idle.bat
@echo off
rem start idle
rem Usage:  idle [-d]
rem -d   Run Debug build (python_d.exe).  Else release build.

setlocal
set exe=win32\python
PATH %PATH%;..\externals\tcltk\bin

if "%1"=="-d" (set exe=%exe%_d) & shift

set cmd=%exe% ../Lib/idlelib/idle.py %1 %2 %3 %4 %5 %6 %7 %8 %9

echo on
%cmd%
back to top