[Python-checkins] cpython (merge 3.5 -> default): Issue #27310: Fix IDLE.app failure to launch on OS X due to vestigial import.
ned.deily
python-checkins at python.org
Mon Jun 13 20:28:34 EDT 2016
https://hg.python.org/cpython/rev/9ba934d159e3
changeset: 101987:9ba934d159e3
parent: 101984:f31b6c3e41f7
parent: 101986:0cf4bda2882c
user: Ned Deily <nad at python.org>
date: Mon Jun 13 20:27:57 2016 -0400
summary:
Issue #27310: Fix IDLE.app failure to launch on OS X due to vestigial import.
files:
Mac/IDLE/IDLE.app/Contents/Resources/idlemain.py | 2 -
Misc/NEWS | 11 ++++++++++
2 files changed, 11 insertions(+), 2 deletions(-)
diff --git a/Mac/IDLE/IDLE.app/Contents/Resources/idlemain.py b/Mac/IDLE/IDLE.app/Contents/Resources/idlemain.py
--- a/Mac/IDLE/IDLE.app/Contents/Resources/idlemain.py
+++ b/Mac/IDLE/IDLE.app/Contents/Resources/idlemain.py
@@ -68,8 +68,6 @@
break
# Now it is safe to import idlelib.
-from idlelib import macosxSupport
-macosxSupport._appbundle = True
from idlelib.pyshell import main
if __name__ == '__main__':
main()
diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -2,6 +2,17 @@
Python News
+++++++++++
+What's New in Python 3.6.0 alpha 3
+==================================
+
+*Release date: XXXX-XX-XX*
+
+IDLE
+++++
+
+- Issue #27310: Fix IDLE.app failure to launch on OS X due to vestigial import.
+
+
What's New in Python 3.6.0 alpha 2
==================================
--
Repository URL: https://hg.python.org/cpython
More information about the Python-checkins
mailing list