| Server IP : 217.160.0.216 / Your IP : 216.73.217.104 Web Server : Apache System : Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux User : u116689255 ( 10217649) PHP Version : 8.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /lib/python3/dist-packages/patiencediff/ |
Upload File : |
import difflib
from typing import Any, List, Sequence, Tuple
class PatienceSequenceMatcher_c(difflib.SequenceMatcher):
def get_matching_blocks(self) -> List[difflib.Match]: ...
def unique_lcs_c(a: Sequence[Any], b: Sequence[Any]) -> List[Tuple[int, int]]: ...
def recurse_matches_c(
a: Sequence[Any], b: Sequence[Any],
alo: int, blo: int, ahi: int, bhi: int,
answer: List[Tuple[int, int]], maxrecursion: int) -> None: ...