changeset: 101987:9ba934d159e3 parent: 101984:f31b6c3e41f7 parent: 101986:0cf4bda2882c user: Ned Deily date: Mon Jun 13 20:27:57 2016 -0400 files: Mac/IDLE/IDLE.app/Contents/Resources/idlemain.py Misc/NEWS description: Issue #27310: Fix IDLE.app failure to launch on OS X due to vestigial import. diff -r f31b6c3e41f7 -r 9ba934d159e3 Mac/IDLE/IDLE.app/Contents/Resources/idlemain.py --- a/Mac/IDLE/IDLE.app/Contents/Resources/idlemain.py Mon Jun 13 23:51:02 2016 +0000 +++ b/Mac/IDLE/IDLE.app/Contents/Resources/idlemain.py Mon Jun 13 20:27:57 2016 -0400 @@ -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 -r f31b6c3e41f7 -r 9ba934d159e3 Misc/NEWS --- a/Misc/NEWS Mon Jun 13 23:51:02 2016 +0000 +++ b/Misc/NEWS Mon Jun 13 20:27:57 2016 -0400 @@ -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 ==================================