Staging
v0.5.1
https://github.com/python/cpython
Revision d02905df874b9199f5dee58448f08c94f48775c4 authored by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) on 09 September 2016, 19:25:27 UTC, committed by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) on 09 September 2016, 19:25:27 UTC
1 parent b420601
Raw File
Tip revision: d02905df874b9199f5dee58448f08c94f48775c4 authored by Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) on 09 September 2016, 19:25:27 UTC
Fix make buildbottest to not re-trigger a profile-opt build. issue28035.
Tip revision: d02905d
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=python
PATH %PATH%;..\..\tcltk\bin

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

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

echo on
%cmd%
back to top