=
{
PyVarObject_HEAD_INIT(&PyType_Type, 0)
.tp_name = "LogTemplate",
.tp_flags = Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE,
.tp_doc = "LogTemplate class encapsulating a syslog-ng template",
.tp_methods = py_log_template_methods,
.tp_new = PyType_GenericNew,
0,
}
PyObject * py_log_template_str(PyObject *s)
Definition: python-logtemplate.c:125
int py_log_template_init(PyObject *s, PyObject *args, PyObject *kwds)
Definition: python-logtemplate.c:89
void py_log_template_free(PyLogTemplate *self)
Definition: python-logtemplate.c:133
Definition: python-logtemplate.h:32