From: Ned Deily Date: Tue, 14 Jun 2016 00:21:57 +0000 (-0400) Subject: Issue #27310: remove vestigial import in IDLE.app X-Git-Tag: v2.7.13rc1~290 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=53e9f83486587c9011f7815f7bf55cfe7e166b09;p=thirdparty%2FPython%2Fcpython.git Issue #27310: remove vestigial import in IDLE.app --- diff --git a/Mac/IDLE/idlemain.py b/Mac/IDLE/idlemain.py index 8b8beb93d0fa..986760d314b5 100644 --- a/Mac/IDLE/idlemain.py +++ b/Mac/IDLE/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()