Staging
v0.5.1
https://github.com/python/cpython
Revision 0560e8a8f8e737688a377a0e934a892100fa19d0 authored by Antoine Pitrou on 14 January 2010, 17:37:24 UTC, committed by Antoine Pitrou on 14 January 2010, 17:37:24 UTC
svn+ssh://pythondev@svn.python.org/python/branches/py3k

................
  r77501 | antoine.pitrou | 2010-01-14 18:34:48 +0100 (jeu., 14 janv. 2010) | 10 lines

  Merged revisions 77499 via svnmerge from
  svn+ssh://pythondev@svn.python.org/python/trunk

  ........
    r77499 | antoine.pitrou | 2010-01-14 18:25:24 +0100 (jeu., 14 janv. 2010) | 4 lines

    Issue #3299: Fix possible crash in the _sre module when given bad
    argument values in debug mode.  Patch by Victor Stinner.
  ........
................
1 parent 9000c16
Raw File
Tip revision: 0560e8a8f8e737688a377a0e934a892100fa19d0 authored by Antoine Pitrou on 14 January 2010, 17:37:24 UTC
Merged revisions 77501 via svnmerge from
Tip revision: 0560e8a
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