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/debugger.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/debugger.py')
-rw-r--r-- | Lib/idlelib/debugger.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/debugger.py b/Lib/idlelib/debugger.py index 477b514..09f912c 100644 --- a/Lib/idlelib/debugger.py +++ b/Lib/idlelib/debugger.py @@ -6,7 +6,7 @@ from tkinter.ttk import Scrollbar from idlelib import macosx from idlelib.scrolledlist import ScrolledList -from idlelib.windows import ListedToplevel +from idlelib.window import ListedToplevel class Idb(bdb.Bdb): @@ -40,7 +40,7 @@ class Idb(bdb.Bdb): prev_name = prev_frame.f_code.co_filename if 'idlelib' in prev_name and 'debugger' in prev_name: # catch both idlelib/debugger.py and idlelib/debugger_r.py - # on both posix and windows + # on both Posix and Windows return False return self.in_rpc_code(prev_frame) |