gh-87179: Fix more IDLE class headers (GH-96899)

Remove unneeded '(object)' and '()'.
(cherry picked from commit aa671b48d6)

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
This commit is contained in:
Miss Islington (bot) 2022-09-17 15:15:23 -07:00 committed by GitHub
parent 876606fc65
commit 98b81c2ac3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
from test.support import requires
from _tkinter import TclError
class TextTest(object):
class TextTest:
"Define items common to both sets of tests."
hw = 'hello\nworld' # Several tests insert this after initialization.

View File

@ -19,7 +19,7 @@
}
code_sample = """\
class C1():
class C1:
# Class comment.
def __init__(self, a, b):
self.a = a