massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / curses / ascii.pyi
1 from typing import TypeVar
2
3 _CharT = TypeVar("_CharT", str, int)
4
5 NUL: int
6 SOH: int
7 STX: int
8 ETX: int
9 EOT: int
10 ENQ: int
11 ACK: int
12 BEL: int
13 BS: int
14 TAB: int
15 HT: int
16 LF: int
17 NL: int
18 VT: int
19 FF: int
20 CR: int
21 SO: int
22 SI: int
23 DLE: int
24 DC1: int
25 DC2: int
26 DC3: int
27 DC4: int
28 NAK: int
29 SYN: int
30 ETB: int
31 CAN: int
32 EM: int
33 SUB: int
34 ESC: int
35 FS: int
36 GS: int
37 RS: int
38 US: int
39 SP: int
40 DEL: int
41
42 controlnames: list[int]
43
44 def isalnum(c: str | int) -> bool: ...
45 def isalpha(c: str | int) -> bool: ...
46 def isascii(c: str | int) -> bool: ...
47 def isblank(c: str | int) -> bool: ...
48 def iscntrl(c: str | int) -> bool: ...
49 def isdigit(c: str | int) -> bool: ...
50 def isgraph(c: str | int) -> bool: ...
51 def islower(c: str | int) -> bool: ...
52 def isprint(c: str | int) -> bool: ...
53 def ispunct(c: str | int) -> bool: ...
54 def isspace(c: str | int) -> bool: ...
55 def isupper(c: str | int) -> bool: ...
56 def isxdigit(c: str | int) -> bool: ...
57 def isctrl(c: str | int) -> bool: ...
58 def ismeta(c: str | int) -> bool: ...
59 def ascii(c: _CharT) -> _CharT: ...
60 def ctrl(c: _CharT) -> _CharT: ...
61 def alt(c: _CharT) -> _CharT: ...
62 def unctrl(c: str | int) -> str: ...