Staging
v0.5.1
https://github.com/python/cpython
Revision 0d423b870b0669e7a47aca2739f89e96652546ce authored by Antoine Pitrou on 07 January 2010, 17:46:49 UTC, committed by Antoine Pitrou on 07 January 2010, 17:46:49 UTC
1 parent bdd863d
Raw File
Tip revision: 0d423b870b0669e7a47aca2739f89e96652546ce authored by Antoine Pitrou on 07 January 2010, 17:46:49 UTC
Issue #7455: Fix possible crash in cPickle on invalid input. Patch by
Tip revision: 0d423b8
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