Revision 52f745852e49498d7dd86fd309ae57f6a7af568f authored by Miss Islington (bot) on 03 February 2018, 17:08:42 UTC, committed by Raymond Hettinger on 03 February 2018, 17:08:42 UTC
(cherry picked from commit 589c718a8e3bde017350f248f7f1c009240eb52b)

Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
1 parent f33eced
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