summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2012-08-17 20:22:30 (GMT)
committerNed Deily <nad@acm.org>2012-08-17 20:22:30 (GMT)
commit6aaa03a9015cac1c1a7ce98b2531c106a15c9de0 (patch)
tree7b2674ba624698c8c968c50cc04dc501864020a1 /Misc
parentbbfe573d9d5fbae478199ccff07c39f5b2de499d (diff)
downloadcpython-6aaa03a9015cac1c1a7ce98b2531c106a15c9de0.zip
cpython-6aaa03a9015cac1c1a7ce98b2531c106a15c9de0.tar.gz
cpython-6aaa03a9015cac1c1a7ce98b2531c106a15c9de0.tar.bz2
Issue #15678: Fix menu customization for IDLE started from OS X
command lines. It was broken as a side effect of the changes to pythonw.c in b79d276041a8 for #15307. Since sys.executable no longer includes 'Python.app' in the path name, test for a framework build instead. This should give the previous behavior in nearly all cases. Whether the previous behavior is sensible is left as an issue for later releases. IDLE.app behavior was not affected as it does its own manipulation of sys.executable.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7e95b66..49a4057 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -29,6 +29,9 @@ Library
multiprocessing on Windows without the "if __name__ == '__main__'"
idiom.
+- Issue #15678: Fix IDLE menus when started from OS X command line
+ (3.3.0b2 regression).
+
C API
-----