mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
Issue #27310: Fix IDLE.app failure to launch on OS X due to vestigial import.
This commit is contained in:
commit
e371599004
2 changed files with 11 additions and 2 deletions
|
|
@ -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()
|
||||
|
|
|
|||
11
Misc/NEWS
11
Misc/NEWS
|
|
@ -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
|
||||
==================================
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue