Skip to content

Commit d80ed91

Browse files
authored
Fix return type of tkinter.Text.search_all() (#15768)
1 parent f4bef2f commit d80ed91

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

stdlib/tkinter/__init__.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3640,7 +3640,7 @@ class Text(Widget, XView, YView):
36403640
nolinestop: bool | None = None,
36413641
overlap: bool | None = None,
36423642
strictlimits: bool | None = None,
3643-
) -> tuple[str, ...]: ...
3643+
) -> tuple[_tkinter.Tcl_Obj, ...]: ...
36443644
else:
36453645
def search(
36463646
self,

0 commit comments

Comments
 (0)