We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0690c79 commit 7f8a38aCopy full SHA for 7f8a38a
Lib/idlelib/idle_test/test_autoexpand.py
@@ -6,7 +6,7 @@
6
from tkinter import Text, Tk
7
8
9
-class Dummy_Editwin:
+class DummyEditwin:
10
# AutoExpand.__init__ only needs .text
11
def __init__(self, text):
12
self.text = text
@@ -18,7 +18,7 @@ def setUpClass(cls):
18
requires('gui')
19
cls.tk = Tk()
20
cls.text = Text(cls.tk)
21
- cls.auto_expand = AutoExpand(Dummy_Editwin(cls.text))
+ cls.auto_expand = AutoExpand(DummyEditwin(cls.text))
22
cls.auto_expand.bell = lambda: None
23
24
# If mock_tk.Text._decode understood indexes 'insert' with suffixed 'linestart',
0 commit comments