massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / stdlib / 3 / curses / ascii.pyi
diff --git a/.config/coc/extensions/coc-python-data/languageServer.0.5.59/Typeshed/stdlib/3/curses/ascii.pyi b/.config/coc/extensions/coc-python-data/languageServer.0.5.59/Typeshed/stdlib/3/curses/ascii.pyi
new file mode 100644 (file)
index 0000000..2a7ee8d
--- /dev/null
@@ -0,0 +1,62 @@
+from typing import List, Union, overload, TypeVar\r
+\r
+_Ch = TypeVar('_Ch', str, int)\r
+\r
+NUL: int\r
+SOH: int\r
+STX: int\r
+ETX: int\r
+EOT: int\r
+ENQ: int\r
+ACK: int\r
+BEL: int\r
+BS: int\r
+TAB: int\r
+HT: int\r
+LF: int\r
+NL: int\r
+VT: int\r
+FF: int\r
+CR: int\r
+SO: int\r
+SI: int\r
+DLE: int\r
+DC1: int\r
+DC2: int\r
+DC3: int\r
+DC4: int\r
+NAK: int\r
+SYN: int\r
+ETB: int\r
+CAN: int\r
+EM: int\r
+SUB: int\r
+ESC: int\r
+FS: int\r
+GS: int\r
+RS: int\r
+US: int\r
+SP: int\r
+DEL: int\r
+\r
+controlnames: List[int]\r
+\r
+def isalnum(c: Union[str, int]) -> bool: ...\r
+def isalpha(c: Union[str, int]) -> bool: ...\r
+def isascii(c: Union[str, int]) -> bool: ...\r
+def isblank(c: Union[str, int]) -> bool: ...\r
+def iscntrl(c: Union[str, int]) -> bool: ...\r
+def isdigit(c: Union[str, int]) -> bool: ...\r
+def isgraph(c: Union[str, int]) -> bool: ...\r
+def islower(c: Union[str, int]) -> bool: ...\r
+def isprint(c: Union[str, int]) -> bool: ...\r
+def ispunct(c: Union[str, int]) -> bool: ...\r
+def isspace(c: Union[str, int]) -> bool: ...\r
+def isupper(c: Union[str, int]) -> bool: ...\r
+def isxdigit(c: Union[str, int]) -> bool: ...\r
+def isctrl(c: Union[str, int]) -> bool: ...\r
+def ismeta(c: Union[str, int]) -> bool: ...\r
+def ascii(c: _Ch) -> _Ch: ...\r
+def ctrl(c: _Ch) -> _Ch: ...\r
+def alt(c: _Ch) -> _Ch: ...\r
+def unctrl(c: Union[str, int]) -> str: ...\r