massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / stdlib / 2and3 / syslog.pyi
1 from typing import overload\r
2 \r
3 LOG_ALERT = ...  # type: int\r
4 LOG_AUTH = ...  # type: int\r
5 LOG_CONS = ...  # type: int\r
6 LOG_CRIT = ...  # type: int\r
7 LOG_CRON = ...  # type: int\r
8 LOG_DAEMON = ...  # type: int\r
9 LOG_DEBUG = ...  # type: int\r
10 LOG_EMERG = ...  # type: int\r
11 LOG_ERR = ...  # type: int\r
12 LOG_INFO = ...  # type: int\r
13 LOG_KERN = ...  # type: int\r
14 LOG_LOCAL0 = ...  # type: int\r
15 LOG_LOCAL1 = ...  # type: int\r
16 LOG_LOCAL2 = ...  # type: int\r
17 LOG_LOCAL3 = ...  # type: int\r
18 LOG_LOCAL4 = ...  # type: int\r
19 LOG_LOCAL5 = ...  # type: int\r
20 LOG_LOCAL6 = ...  # type: int\r
21 LOG_LOCAL7 = ...  # type: int\r
22 LOG_LPR = ...  # type: int\r
23 LOG_MAIL = ...  # type: int\r
24 LOG_NDELAY = ...  # type: int\r
25 LOG_NEWS = ...  # type: int\r
26 LOG_NOTICE = ...  # type: int\r
27 LOG_NOWAIT = ...  # type: int\r
28 LOG_PERROR = ...  # type: int\r
29 LOG_PID = ...  # type: int\r
30 LOG_SYSLOG = ...  # type: int\r
31 LOG_USER = ...  # type: int\r
32 LOG_UUCP = ...  # type: int\r
33 LOG_WARNING = ...  # type: int\r
34 \r
35 def LOG_MASK(a: int) -> int: ...\r
36 def LOG_UPTO(a: int) -> int: ...\r
37 def closelog() -> None: ...\r
38 def openlog(ident: str = ..., logoption: int = ..., facility: int = ...) -> None: ...\r
39 def setlogmask(x: int) -> int: ...\r
40 \r
41 @overload\r
42 def syslog(priority: int, message: str) -> None: ...\r
43 @overload\r
44 def syslog(message: str) -> None: ...\r