Skip to content

Commit e371599

Browse files
committed
Issue python#27310: Fix IDLE.app failure to launch on OS X due to vestigial import.
2 parents 9b1f443 + 19e21e4 commit e371599

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

Mac/IDLE/IDLE.app/Contents/Resources/idlemain.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,6 @@
6868
break
6969

7070
# Now it is safe to import idlelib.
71-
from idlelib import macosxSupport
72-
macosxSupport._appbundle = True
7371
from idlelib.pyshell import main
7472
if __name__ == '__main__':
7573
main()

Misc/NEWS

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22
Python News
33
+++++++++++
44

5+
What's New in Python 3.6.0 alpha 3
6+
==================================
7+
8+
*Release date: XXXX-XX-XX*
9+
10+
IDLE
11+
++++
12+
13+
- Issue #27310: Fix IDLE.app failure to launch on OS X due to vestigial import.
14+
15+
516
What's New in Python 3.6.0 alpha 2
617
==================================
718

0 commit comments

Comments
 (0)