Lines Matching defs:args
31 - Arguments to openlog() are now keyword args and are all optional.
117 syslog_openlog(PyObject * self, PyObject * args, PyObject *kwds)
125 if (!PyArg_ParseTupleAndKeywords(args, kwds,
162 syslog_syslog(PyObject * self, PyObject * args)
168 if (!PyArg_ParseTuple(args, "iU;[priority,] message string",
171 if (!PyArg_ParseTuple(args, "U;[priority,] message string",
237 syslog_setlogmask(PyObject *self, PyObject *args)
241 if (!PyArg_ParseTuple(args, "l;mask for priority", &maskpri))
251 syslog_log_mask(PyObject *self, PyObject *args)
255 if (!PyArg_ParseTuple(args, "l:LOG_MASK", &pri))
262 syslog_log_upto(PyObject *self, PyObject *args)
266 if (!PyArg_ParseTuple(args, "l:LOG_UPTO", &pri))