[Python-checkins] cpython (3.5): Issue #27310: remove vestigial import in IDLE.app

ned.deily python-checkins at python.org
Mon Jun 13 20:28:33 EDT 2016


https://hg.python.org/cpython/rev/0cf4bda2882c
changeset:   101986:0cf4bda2882c
branch:      3.5
parent:      101983:e032ffd5ae84
user:        Ned Deily <nad at python.org>
date:        Mon Jun 13 20:22:53 2016 -0400
summary:
  Issue #27310: remove vestigial import in IDLE.app

files:
  Mac/IDLE/IDLE.app/Contents/Resources/idlemain.py |  2 --
  1 files changed, 0 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()

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list