Issue #24225: Fix additional renamed module references.

This commit is contained in:
Ned Deily 2016-06-03 17:50:44 -07:00
parent fcbf1ca4f9
commit 622b2f6ec9
3 changed files with 3 additions and 3 deletions

View File

@ -155,7 +155,7 @@ def overrideRootMenu(root, flist):
if end > 0:
menu.delete(0, end)
windows.add_windows_to_menu(menu)
Windows.register_callback(postwindowsmenu)
windows.register_callback(postwindowsmenu)
def about_dialog(event=None):
"Handle Help 'About IDLE' event."

View File

@ -70,6 +70,6 @@ for idx, value in enumerate(sys.argv):
# Now it is safe to import idlelib.
from idlelib import macosxSupport
macosxSupport._appbundle = True
from idlelib.PyShell import main
from idlelib.pyshell import main
if __name__ == '__main__':
main()

View File

@ -1,5 +1,5 @@
#! /usr/bin/env python3
from idlelib.PyShell import main
from idlelib.pyshell import main
if __name__ == '__main__':
main()