From: Ned Deily <nad@python.org> Date: Tue, 14 Jun 2016 00:27:57 +0000 (-0400) Subject: Issue #27310: Fix IDLE.app failure to launch on OS X due to vestigial import. X-Git-Tag: v3.6.0a3~172 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e371599004698934701ccf512f3cfdbde1cb5fa2;p=python Issue #27310: Fix IDLE.app failure to launch on OS X due to vestigial import. --- e371599004698934701ccf512f3cfdbde1cb5fa2 diff --cc Mac/IDLE/IDLE.app/Contents/Resources/idlemain.py index 5e9305a9d5,986760d314..5994c18ff8 --- a/Mac/IDLE/IDLE.app/Contents/Resources/idlemain.py +++ b/Mac/IDLE/IDLE.app/Contents/Resources/idlemain.py @@@ -68,8 -68,6 +68,6 @@@ for idx, value in enumerate(sys.argv) break # Now it is safe to import idlelib. - from idlelib import macosxSupport - macosxSupport._appbundle = True -from idlelib.PyShell import main +from idlelib.pyshell import main if __name__ == '__main__': main() diff --cc Misc/NEWS index 005954f190,1e06ea8895..7493570057 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -2,10 -2,22 +2,21 @@@ Python News +++++++++++ -What's New in Python 3.5.3 release candidate 1? -=============================================== ++What's New in Python 3.6.0 alpha 3 ++================================== + -Release date: TBA ++*Release date: XXXX-XX-XX* + -Core and Builtins ------------------ ++IDLE ++++++ + -Library -------- ++- Issue #27310: Fix IDLE.app failure to launch on OS X due to vestigial import. + + -What's New in Python 3.5.2 final? -================================= +What's New in Python 3.6.0 alpha 2 +================================== -Release date: 2016-06-26 +*Release date: XXXX-XX-XX* Core and Builtins -----------------