diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2018-06-21 01:25:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-21 01:25:59 (GMT) |
commit | a361e89d5ae3daefe9e8b8a7e889cd2ad8c45b77 (patch) | |
tree | f213feb31b204946297645de94ca774ca65fd777 /Lib/idlelib/macosx.py | |
parent | 87a927325e3856621790a39d8718ff24a19510aa (diff) | |
download | cpython-a361e89d5ae3daefe9e8b8a7e889cd2ad8c45b77.zip cpython-a361e89d5ae3daefe9e8b8a7e889cd2ad8c45b77.tar.gz cpython-a361e89d5ae3daefe9e8b8a7e889cd2ad8c45b77.tar.bz2 |
bpo-33906: Rename idlelib.windows as window (#7833)
Match Window on the main menu and remove last plural module name.
Change imports, test, and attribute references to match new name.
Diffstat (limited to 'Lib/idlelib/macosx.py')
-rw-r--r-- | Lib/idlelib/macosx.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/macosx.py b/Lib/idlelib/macosx.py index d85278a..3d29612 100644 --- a/Lib/idlelib/macosx.py +++ b/Lib/idlelib/macosx.py @@ -128,7 +128,7 @@ def overrideRootMenu(root, flist): # menu. from tkinter import Menu from idlelib import mainmenu - from idlelib import windows + from idlelib import window closeItem = mainmenu.menudefs[0][1][-2] |