diff options
author | Ned Deily <nad@python.org> | 2016-06-13 20:27:57 -0400 |
---|---|---|
committer | Ned Deily <nad@python.org> | 2016-06-13 20:27:57 -0400 |
commit | e371599004698934701ccf512f3cfdbde1cb5fa2 (patch) | |
tree | 45ba894273da8fc7d52e6ff6afa3d3a78e80fb98 | |
parent | 9b1f4431c799151b5bb7c5608cf876b255adfc80 (diff) | |
parent | 19e21e4948c182edc130eb58ea8d1c14cd6d3173 (diff) | |
download | cpython-git-e371599004698934701ccf512f3cfdbde1cb5fa2.tar.gz |
Issue #27310: Fix IDLE.app failure to launch on OS X due to vestigial import.
-rw-r--r-- | Mac/IDLE/IDLE.app/Contents/Resources/idlemain.py | 2 | ||||
-rw-r--r-- | 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 index 5e9305a9d5..5994c18ff8 100644 --- a/Mac/IDLE/IDLE.app/Contents/Resources/idlemain.py +++ b/Mac/IDLE/IDLE.app/Contents/Resources/idlemain.py @@ -68,8 +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 if __name__ == '__main__': main() @@ -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 ================================== |