Skip to content

Commit 1328308

Browse files
authored
Fix test fails
1 parent 422aa6f commit 1328308

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/tkinter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4084,7 +4084,7 @@ def search_all(self, pattern, index, stopindex=None, *,
40844084
args.append(index)
40854085
if stopindex: args.append(stopindex)
40864086
result = self.tk.call(tuple(args))
4087-
return self._tk.splitlist(result)
4087+
return self.tk.splitlist(result)
40884088

40894089
def see(self, index):
40904090
"""Scroll such that the character at INDEX is visible."""

0 commit comments

Comments
 (0)