#include "system.h"#include <rpmlib.h>#include "rpmal-py.h"#include "rpmds-py.h"#include "rpmfi-py.h"#include "debug.h"Include dependency graph for rpmal-py.c:

Go to the source code of this file.
Functions | |
| static PyObject * | rpmal_Debug (rpmalObject *s, PyObject *args, PyObject *kwds) |
| static PyObject * | rpmal_Add (rpmalObject *s, PyObject *args, PyObject *kwds) |
| static PyObject * | rpmal_Del (rpmalObject *s, PyObject *args, PyObject *kwds) |
| static PyObject * | rpmal_AddProvides (rpmalObject *s, PyObject *args, PyObject *kwds) |
| static PyObject * | rpmal_MakeIndex (rpmalObject *s) |
| static void | rpmal_dealloc (rpmalObject *s) |
| static PyObject * | rpmal_getattro (PyObject *o, PyObject *n) |
| static int | rpmal_setattro (PyObject *o, PyObject *n, PyObject *v) |
| rpmalObject * | rpmal_Wrap (rpmal al) |
Variables | |
| static struct PyMethodDef | rpmal_methods [] |
| static char | rpmal_doc [] |
| PyTypeObject | rpmal_Type |
Definition in file rpmal-py.c.
|
||||||||||||||||
|
Definition at line 32 of file rpmal-py.c. References rpmalObject_s::al, rpmdsObject_s::ds, rpmfiObject_s::fi, rpmalAdd(), rpmds_Type, and rpmfi_Type. |
|
||||||||||||||||
|
Definition at line 72 of file rpmal-py.c. References rpmalObject_s::al, rpmdsObject_s::ds, rpmalAddProvides(), and rpmds_Type. |
|
|
Definition at line 125 of file rpmal-py.c. References rpmalObject_s::al, and rpmalFree(). |
|
||||||||||||||||
|
Definition at line 17 of file rpmal-py.c. References _rpmal_debug. |
|
||||||||||||||||
|
Definition at line 54 of file rpmal-py.c. References rpmalObject_s::al, and rpmalDel(). |
|
||||||||||||
|
Definition at line 134 of file rpmal-py.c. |
|
|
Definition at line 95 of file rpmal-py.c. References rpmalObject_s::al, and rpmalMakeIndex(). |
|
||||||||||||||||
|
Definition at line 140 of file rpmal-py.c. |
|
|
Initial value:
""
Definition at line 149 of file rpmal-py.c. |
|
|
Initial value: {
{"Debug", (PyCFunction)rpmal_Debug, METH_VARARGS|METH_KEYWORDS,
NULL},
{"add", (PyCFunction)rpmal_Add, METH_VARARGS|METH_KEYWORDS,
NULL},
{"delete", (PyCFunction)rpmal_Del, METH_VARARGS|METH_KEYWORDS,
NULL},
{"addProvides",(PyCFunction)rpmal_AddProvides, METH_VARARGS|METH_KEYWORDS,
NULL},
{"makeIndex",(PyCFunction)rpmal_MakeIndex, METH_NOARGS,
NULL},
{NULL, NULL }
}
Definition at line 107 of file rpmal-py.c. |
1.4.4