1 | from typing import List, Optional, Tuple
|
2 |
|
3 | FNM_CASEFOLD: int
|
4 | REG_ICASE: int
|
5 | REG_NEWLINE: int
|
6 | REG_NOTBOL: int
|
7 |
|
8 | def gethostname() -> str: ...
|
9 | def glob(pat: str) -> List[str]: ...
|
10 | def fnmatch(pat: str, s: str, flags: int = 0) -> bool: ...
|
11 | def regex_first_group_match(regex: str, s: str, pos: int) -> Optional[Tuple[int, int]]: ...
|
12 | def regex_search(regex: str, cflags: int, s: str, eflags: int, pos: int = 0) -> Optional[List[int]]: ...
|
13 | def wcswidth(s: str) -> int: ...
|
14 | def get_terminal_width() -> int: ...
|
15 | def print_time(real: float, user: float, sys: float) -> None: ...
|
16 | def realpath(path: str) -> str: ...
|
17 |
|
18 | def cpython_reset_locale() -> None: ...
|