[Python-checkins] r72335 - in python/trunk: Misc/NEWS Tools/msi/msi.py
martin.v.loewis
python-checkins at python.org
Tue May 5 18:10:16 CEST 2009
Author: martin.v.loewis
Date: Tue May 5 18:10:16 2009
New Revision: 72335
Log:
Issue #5847: Remove -n switch on "Edit with IDLE" menu item.
Modified:
python/trunk/Misc/NEWS
python/trunk/Tools/msi/msi.py
Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS (original)
+++ python/trunk/Misc/NEWS Tue May 5 18:10:16 2009
@@ -863,6 +863,8 @@
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.
Modified: python/trunk/Tools/msi/msi.py
==============================================================================
--- python/trunk/Tools/msi/msi.py (original)
+++ python/trunk/Tools/msi/msi.py Tue May 5 18:10:16 2009
@@ -1187,10 +1187,10 @@
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",
More information about the Python-checkins
mailing list