[Python-checkins] cpython (2.7): IDLE: #6378: Further adjust idle.bat to start associated Python

kurt.kaiser python-checkins at python.org
Thu May 26 04:37:20 CEST 2011


http://hg.python.org/cpython/rev/f3446f08187a
changeset:   70394:f3446f08187a
branch:      2.7
parent:      70388:43a498da8680
user:        Kurt B. Kaiser <kbk at shore.net>
date:        Wed May 25 22:36:51 2011 -0400
summary:
  IDLE: #6378: Further adjust idle.bat to start associated Python

files:
  Lib/idlelib/NEWS.txt |  3 ++-
  Lib/idlelib/idle.bat |  2 +-
  2 files changed, 3 insertions(+), 2 deletions(-)


diff --git a/Lib/idlelib/NEWS.txt b/Lib/idlelib/NEWS.txt
--- a/Lib/idlelib/NEWS.txt
+++ b/Lib/idlelib/NEWS.txt
@@ -1,8 +1,9 @@
 What's New in IDLE 2.7.2?
 =======================
 
-*Release date: XX-XX-XXXX*
+*Release date: 29-May-2011*
 
+- Issue #6378: Further adjust idle.bat to start associated Python
 
 - Issue #11896: Save on Close failed despite selecting "Yes" in dialog.
 
diff --git a/Lib/idlelib/idle.bat b/Lib/idlelib/idle.bat
--- a/Lib/idlelib/idle.bat
+++ b/Lib/idlelib/idle.bat
@@ -1,4 +1,4 @@
 @echo off
 rem Start IDLE using the appropriate Python interpreter
 set CURRDIR=%~dp0
-start "%CURRDIR%..\..\pythonw.exe" "%CURRDIR%idle.pyw" %1 %2 %3 %4 %5 %6 %7 %8 %9
+start "IDLE" "%CURRDIR%..\..\pythonw.exe" "%CURRDIR%idle.pyw" %1 %2 %3 %4 %5 %6 %7 %8 %9

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list