# coding: utf-8 # AUTO-GENERATED FILE -- DO NOT EDIT LOG_ALERT = 1 LOG_AUTH = 32 LOG_AUTHPRIV = 80 LOG_CONS = 2 LOG_CRIT = 2 LOG_CRON = 72 LOG_DAEMON = 24 LOG_DEBUG = 7 LOG_EMERG = 0 LOG_ERR = 3 LOG_INFO = 6 LOG_KERN = 0 LOG_LOCAL0 = 128 LOG_LOCAL1 = 136 LOG_LOCAL2 = 144 LOG_LOCAL3 = 152 LOG_LOCAL4 = 160 LOG_LOCAL5 = 168 LOG_LOCAL6 = 176 LOG_LOCAL7 = 184 LOG_LPR = 48 LOG_MAIL = 16 def LOG_MASK(pri): """ Calculates the mask for the individual priority pri. """ pass LOG_NDELAY = 8 LOG_NEWS = 56 LOG_NOTICE = 5 LOG_NOWAIT = 16 LOG_ODELAY = 4 LOG_PERROR = 32 LOG_PID = 1 LOG_SYSLOG = 40 def LOG_UPTO(pri): """ Calculates the mask for all priorities up to and including pri. """ pass LOG_USER = 8 LOG_UUCP = 64 LOG_WARNING = 4 __doc__ = None __file__ = '/home/shared/src/ide/build-files/build-temp/runtimes-release/__os__/linux-x64/runtime-python3.12/lib/python3.12/lib-dynload/syslog.cpython-312-x86_64-linux-gnu.so' __loader__ = None __name__ = 'syslog' __package__ = '' __spec__ = None def closelog(): """ Reset the syslog module values and call the system library closelog(). """ pass def openlog(): """ Set logging options of subsequent syslog() calls. """ pass def setlogmask(maskpri): """ Set the priority mask to maskpri and return the previous mask value. """ pass def syslog(): """ syslog([priority=LOG_INFO,] message) Send the string message to the system logger. """ pass