From 588b54b646ff3ca7e86e5b493e01f60b449d2246 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Tue, 5 May 2009 16:10:16 +0000 Subject: [PATCH] Issue #5847: Remove -n switch on "Edit with IDLE" menu item. --- Misc/NEWS | 2 ++ Tools/msi/msi.py | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Misc/NEWS b/Misc/NEWS index 0152d9a8ae..26af9bb49d 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -863,6 +863,8 @@ Tools/Demos Build ----- +- Issue #5847: Remove -n switch on "Edit with IDLE" menu item. + - Issue #5726: Make Modules/ld_so_aix return the actual exit code of the linker, rather than always exit successfully. Patch by Floris Bruynooghe. diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index 38d57edea6..de61914634 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -1187,10 +1187,10 @@ def add_registry(db): if have_tcl: tcl_verbs=[ ("py.IDLE", -1, pat % (testprefix, "", ewi), "", - r'"[TARGETDIR]pythonw.exe" "[TARGETDIR]Lib\idlelib\idle.pyw" -n -e "%1"', + r'"[TARGETDIR]pythonw.exe" "[TARGETDIR]Lib\idlelib\idle.pyw" -e "%1"', "REGISTRY.tcl"), ("pyw.IDLE", -1, pat % (testprefix, "NoCon", ewi), "", - r'"[TARGETDIR]pythonw.exe" "[TARGETDIR]Lib\idlelib\idle.pyw" -n -e "%1"', + r'"[TARGETDIR]pythonw.exe" "[TARGETDIR]Lib\idlelib\idle.pyw" -e "%1"', "REGISTRY.tcl"), ] add_data(db, "Registry", -- 2.50.0