Staging
v0.5.1
https://github.com/python/cpython
Revision 441dad8145686a9438ef1a30da64e589af2989ed authored by Kurt B. Kaiser on 04 October 2009, 23:26:19 UTC, committed by Kurt B. Kaiser on 04 October 2009, 23:26:19 UTC
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r71995 | kurt.kaiser | 2009-04-26 19:22:11 -0400 (Sun, 26 Apr 2009) | 2 lines

  Right click 'go to file/line' not working if spaces
  in path.  Bug 5559.
........
  r72227 | kurt.kaiser | 2009-05-02 22:05:22 -0400 (Sat, 02 May 2009) | 2 lines

  Further development of issue5559, handle Windows files
  which not only have embedded spaces, but leading spaces.
........
1 parent b85c147
Raw File
Tip revision: 441dad8145686a9438ef1a30da64e589af2989ed authored by Kurt B. Kaiser on 04 October 2009, 23:26:19 UTC
Merged revisions 71995,72227 via svnmerge from
Tip revision: 441dad8
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