diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2021-01-24 19:08:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-24 19:08:50 (GMT) |
commit | 8dfe15625e6ea4357a13fec7989a0e6ba2bf1359 (patch) | |
tree | 50c5397aa53f021616f370e3dfab3520eefddbd2 /Lib/idlelib/tooltip.py | |
parent | 15bd9efd01e44087664e78bf766865a6d2e06626 (diff) | |
download | cpython-8dfe15625e6ea4357a13fec7989a0e6ba2bf1359.zip cpython-8dfe15625e6ea4357a13fec7989a0e6ba2bf1359.tar.gz cpython-8dfe15625e6ea4357a13fec7989a0e6ba2bf1359.tar.bz2 |
bpo-43013: Update idlelib code to 3.x (GH-24315)
Remove 9 remaining '(object)' occurrences in class headers in idlelib
and 25 '()' occurrences in idlelib.idle_test class headers.
Diffstat (limited to 'Lib/idlelib/tooltip.py')
-rw-r--r-- | Lib/idlelib/tooltip.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/tooltip.py b/Lib/idlelib/tooltip.py index 6965826..d714318 100644 --- a/Lib/idlelib/tooltip.py +++ b/Lib/idlelib/tooltip.py @@ -7,7 +7,7 @@ This includes: from tkinter import * -class TooltipBase(object): +class TooltipBase: """abstract base class for tooltips""" def __init__(self, anchor_widget): |