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 8b3e27d commit e613018Copy full SHA for e613018
stdlib/2and3/difflib.pyi
@@ -38,6 +38,10 @@ class SequenceMatcher(Generic[_T]):
38
def quick_ratio(self) -> float: ...
39
def real_quick_ratio(self) -> float: ...
40
41
+@overload
42
+def get_close_matches(word: str, possibilities: Iterable[str],
43
+ n: int = ..., cutoff: float = ...) -> List[str]: ...
44
45
def get_close_matches(word: Sequence[_T], possibilities: Iterable[Sequence[_T]],
46
n: int = ..., cutoff: float = ...) -> List[Sequence[_T]]: ...
47
0 commit comments