Staging
v0.5.1
https://github.com/python/cpython
Revision 9460648547f10d8b2ffd561975a30d14ba574f43 authored by Georg Brandl on 04 May 2009, 20:46:44 UTC, committed by Georg Brandl on 04 May 2009, 20:46:44 UTC
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r72290 | georg.brandl | 2009-05-04 22:45:13 +0200 (Mo, 04 Mai 2009) | 1 line

  #5927, 5928: typos.
........
1 parent 17761d1
Raw File
Tip revision: 9460648547f10d8b2ffd561975a30d14ba574f43 authored by Georg Brandl on 04 May 2009, 20:46:44 UTC
Merged revisions 72290 via svnmerge from
Tip revision: 9460648
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