File tree Expand file tree Collapse file tree
Open diff view settings
Expand file tree Collapse file tree
Open diff view settings
Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ class Pattern(Generic[AnyStr]):
169169 @overload
170170 def split (self , string : AnyStr , maxsplit : int = 0 ) -> list [AnyStr | MaybeNone ]: ...
171171
172- # return type depends on the number of groups in the pattern
172+ # return type is either list[str/bytes] or list[tuple[str/bytes, ...]]
173173 @overload
174174 def findall (self : Pattern [str ], string : str , pos : int = 0 , endpos : int = sys .maxsize ) -> list [Any ]: ...
175175 @overload
@@ -302,6 +302,7 @@ def split(
302302 pattern : bytes | Pattern [bytes ], string : ReadableBuffer , maxsplit : int = 0 , flags : _FlagsType = 0
303303) -> list [bytes | MaybeNone ]: ...
304304
305+ # return type is either list[str/bytes] or list[tuple[str/bytes, ...]]
305306@overload
306307def findall (pattern : str | Pattern [str ], string : str , flags : _FlagsType = 0 ) -> list [Any ]: ...
307308@overload
You can’t perform that action at this time.
0 commit comments