summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/idle_test/test_autocomplete.py
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2021-01-24 19:08:50 (GMT)
committerGitHub <noreply@github.com>2021-01-24 19:08:50 (GMT)
commit8dfe15625e6ea4357a13fec7989a0e6ba2bf1359 (patch)
tree50c5397aa53f021616f370e3dfab3520eefddbd2 /Lib/idlelib/idle_test/test_autocomplete.py
parent15bd9efd01e44087664e78bf766865a6d2e06626 (diff)
downloadcpython-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/idle_test/test_autocomplete.py')
-rw-r--r--Lib/idlelib/idle_test/test_autocomplete.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/idle_test/test_autocomplete.py b/Lib/idlelib/idle_test/test_autocomplete.py
index 9c113bd..642bb5d 100644
--- a/Lib/idlelib/idle_test/test_autocomplete.py
+++ b/Lib/idlelib/idle_test/test_autocomplete.py
@@ -195,7 +195,7 @@ class AutoCompleteTest(unittest.TestCase):
self.assertFalse(acp.open_completions(ac.TAB))
self.text.delete('1.0', 'end')
- class dummy_acw():
+ class dummy_acw:
__init__ = Func()
show_window = Func(result=False)
hide_window = Func()