5 lines
121 B
Python
5 lines
121 B
Python
|
|
from re import Match
|
||
|
|
from re import Pattern
|
||
|
|
|
||
|
|
def fullmatch(pattern: Pattern[str], string: str) -> Match[str] | None: ...
|