Staging
v0.5.1
https://github.com/python/cpython
Revision b6b76cc0ff34facfe065c536bc67a0cc55fa7b56 authored by Benjamin Peterson on 03 March 2009, 23:03:12 UTC, committed by Benjamin Peterson on 03 March 2009, 23:03:12 UTC
........
  r70149 | raymond.hettinger | 2009-03-03 16:59:25 -0600 (Tue, 03 Mar 2009) | 5 lines

  Backport 70140, 70141, 70143, and 70144.
  Adds tests, switches from list to deque, fixes __reduce__
  which was unnecessarily copying __keys.
........
1 parent 62f71b0
Raw File
Tip revision: b6b76cc0ff34facfe065c536bc67a0cc55fa7b56 authored by Benjamin Peterson on 03 March 2009, 23:03:12 UTC
Blocked revisions 70149 via svnmerge
Tip revision: b6b76cc
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