Lines Matching refs:openlog
31 - Arguments to openlog() are now keyword args and are all optional.
32 - syslog() calls openlog() if it hasn't already been called.
35 - When facility not specified to syslog() method, use default from openlog()
44 - Change openlog arg defaults to match normal syslog behavior.
45 - Plug memory leak in openlog().
58 static PyObject *S_ident_o = NULL; /* identifier, held by openlog() */
65 /* Figure out what to use for as the program "ident" for openlog().
67 * because the syslog module can still be used because openlog(3)
126 "|Ull:openlog", keywords, &ident, &logopt, &facility))
137 /* At this point, ident should be INCREF()ed. openlog(3) does not
139 * If NULL, just let openlog figure it out (probably using C argv[0]).
148 if (PySys_Audit("syslog.openlog", "Oll", ident ? ident : Py_None, logopt, facility) < 0) {
153 openlog(ident_str, logopt, facility);
188 /* Continue even if PyTuple_New fails, because openlog(3) is optional.
205 /* Incref ident, because it can be decrefed if syslog.openlog() is
275 {"openlog", _PyCFunction_CAST(syslog_openlog), METH_VARARGS | METH_KEYWORDS},
304 /* openlog() option flags */