Staging
v0.8.1
Revision d9212200fe8ddb55d73b8231869cfbb32635ba92 authored by Serhiy Storchaka on 05 October 2018, 18:58:15 UTC, committed by GitHub on 05 October 2018, 18:58:15 UTC
(cherry picked from commit addf8afb43af58b9bf56a0ecfd0f316dd60ac0c3)
1 parent 6bffe50
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