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