Kaydet (Commit) 622b2f6e authored tarafından Ned Deily's avatar Ned Deily

Issue #24225: Fix additional renamed module references.

üst fcbf1ca4
......@@ -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."
......
......@@ -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()
#! /usr/bin/env python3
from idlelib.PyShell import main
from idlelib.pyshell import main
if __name__ == '__main__':
main()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment