Staging
v0.5.1
https://github.com/python/cpython
Revision 99b5afab74428e5ddfd877bdf3aa8a8c479696b1 authored by Benjamin Peterson on 14 April 2014, 02:10:38 UTC, committed by Benjamin Peterson on 14 April 2014, 02:10:38 UTC
1 parent 80e6af1
Raw File
Tip revision: 99b5afab74428e5ddfd877bdf3aa8a8c479696b1 authored by Benjamin Peterson on 14 April 2014, 02:10:38 UTC
in scan_once, prevent the reading of arbitrary memory when passed a negative index
Tip revision: 99b5afa
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