From: Ned Deily Date: Tue, 14 Jun 2016 00:22:53 +0000 (-0400) Subject: Issue #27310: remove vestigial import in IDLE.app X-Git-Tag: v3.6.0a3~172^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=19e21e4948c182edc130eb58ea8d1c14cd6d3173;p=thirdparty%2FPython%2Fcpython.git Issue #27310: remove vestigial import in IDLE.app --- diff --git a/Mac/IDLE/IDLE.app/Contents/Resources/idlemain.py b/Mac/IDLE/IDLE.app/Contents/Resources/idlemain.py index 8b8beb93d0fa..986760d314b5 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()