diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-12-04 06:59:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-04 06:59:19 (GMT) |
commit | 5ada3e5e91487e010f5377329b9aa12247d77cfb (patch) | |
tree | ca76fedb57cf429e3a460c4d4fa220294701bcd1 /Lib/idlelib/sidebar.py | |
parent | e347a8e0e3c00ef726ae627686771aadd74fc967 (diff) | |
download | cpython-5ada3e5e91487e010f5377329b9aa12247d77cfb.zip cpython-5ada3e5e91487e010f5377329b9aa12247d77cfb.tar.gz cpython-5ada3e5e91487e010f5377329b9aa12247d77cfb.tar.bz2 |
[3.11] gh-66819: More IDLE htest updates(4) (GH-112686) (#112689)
Mostly double spacing before 'if __name__...'.
(cherry picked from commit e5b0db0315941b968ebcc2414bfcdd2da44fd3c2)
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
Diffstat (limited to 'Lib/idlelib/sidebar.py')
-rw-r--r-- | Lib/idlelib/sidebar.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/sidebar.py b/Lib/idlelib/sidebar.py index 5dc17fc..f05a2b0 100644 --- a/Lib/idlelib/sidebar.py +++ b/Lib/idlelib/sidebar.py @@ -514,7 +514,7 @@ class ShellSidebar(BaseSideBar): self.change_callback() -def _linenumbers_drag_scrolling(parent): # htest # +def _sidebar_number_scrolling(parent): # htest # from idlelib.idle_test.test_sidebar import Dummy_editwin top = tk.Toplevel(parent) @@ -541,4 +541,4 @@ if __name__ == '__main__': main('idlelib.idle_test.test_sidebar', verbosity=2, exit=False) from idlelib.idle_test.htest import run - run(_linenumbers_drag_scrolling) + run(_sidebar_number_scrolling) |