9 lines
261 B
Python
9 lines
261 B
Python
from typing import List, Optional, Tuple
|
|
|
|
def match(
|
|
lines: List[bytes], levels: Tuple[str, str, str], needle: str,
|
|
output_positions: bool, limit: int, num_threads: int, mark_before: str,
|
|
mark_after: str, delimiter: str
|
|
) -> Optional[str]:
|
|
pass
|