#include "system.h"
#include "structmember.h"
#include "rpmdebug-py.c"
#include <rpmcli.h>
#include "rpmrc-py.h"
#include "debug.h"
Go to the source code of this file.
Class: rpm.rc | |
static struct PyMethodDef | rpmrc_methods [] |
PyTypeObject | rpmrc_Type |
PyObject * | rpmrc_AddMacro (PyObject *self, PyObject *args, PyObject *kwds) |
PyObject * | rpmrc_DelMacro (PyObject *self, PyObject *args, PyObject *kwds) |
Variables | |
static int | _rc_debug = 0 |
Definition in file rpmrc-py.c.
PyObject* rpmrc_AddMacro | ( | PyObject * | self, | |
PyObject * | args, | |||
PyObject * | kwds | |||
) |
PyObject* rpmrc_DelMacro | ( | PyObject * | self, | |
PyObject * | args, | |||
PyObject * | kwds | |||
) |
int _rc_debug = 0 [static] |
Definition at line 18 of file rpmrc-py.c.
struct PyMethodDef rpmrc_methods[] [static] |
Initial value:
{ { "addMacro", (PyCFunction) rpmrc_AddMacro, METH_VARARGS|METH_KEYWORDS, NULL }, { "delMacro", (PyCFunction) rpmrc_DelMacro, METH_VARARGS|METH_KEYWORDS, NULL }, {NULL, NULL} }
Definition at line 320 of file rpmrc-py.c.