Staging
v0.8.1
https://github.com/python/cpython
Revision d642734d7f00bac67c655ea704102058b838b2d5 authored by Philip Jenvey on 28 May 2009, 03:16:05 UTC, committed by Philip Jenvey on 28 May 2009, 03:16:05 UTC
........
  r72972 | philip.jenvey | 2009-05-27 20:10:59 -0700 (Wed, 27 May 2009) | 2 lines

  explicitly close the file, merged from py3k
........
  r72973 | philip.jenvey | 2009-05-27 20:12:16 -0700 (Wed, 27 May 2009) | 2 lines

  further hint to where the open docs really are
........
1 parent 87c50b4
Raw File
Tip revision: d642734d7f00bac67c655ea704102058b838b2d5 authored by Philip Jenvey on 28 May 2009, 03:16:05 UTC
Blocked revisions 72972-72973 via svnmerge
Tip revision: d642734
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