Commit 588b54b6 authored by Martin v. Löwis's avatar Martin v. Löwis

Issue #5847: Remove -n switch on "Edit with IDLE" menu item.

parent cecdc9c0
...@@ -863,6 +863,8 @@ Tools/Demos ...@@ -863,6 +863,8 @@ Tools/Demos
Build 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 - Issue #5726: Make Modules/ld_so_aix return the actual exit code of the
linker, rather than always exit successfully. Patch by Floris Bruynooghe. linker, rather than always exit successfully. Patch by Floris Bruynooghe.
......
...@@ -1187,10 +1187,10 @@ def add_registry(db): ...@@ -1187,10 +1187,10 @@ def add_registry(db):
if have_tcl: if have_tcl:
tcl_verbs=[ tcl_verbs=[
("py.IDLE", -1, pat % (testprefix, "", ewi), "", ("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"), "REGISTRY.tcl"),
("pyw.IDLE", -1, pat % (testprefix, "NoCon", ewi), "", ("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"), "REGISTRY.tcl"),
] ]
add_data(db, "Registry", add_data(db, "Registry",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment