Staging
v0.8.1
Revision 0e823c6efa4729f3cd19f96af82c673b10cd3ee2 authored by Miss Islington (bot) on 30 May 2018, 23:22:13 UTC, committed by GitHub on 30 May 2018, 23:22:13 UTC
(cherry picked from commit 02e2a085dc1740b1cbf4ba2ed77335c84ce8a367)

Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
1 parent 5191892
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