#include "system.h"
#include <rpmio.h>
#include <rpmcb.h>
#include <rpmtypes.h>
#include <rpmtag.h>
#include "rpmdb-py.h"
#include "rpmmi-py.h"
#include "header-py.h"
#include "debug.h"
Go to the source code of this file.
§ rpmdb_dealloc()
§ rpmdb_getattro()
static PyObject* rpmdb_getattro |
( |
PyObject * |
o, |
|
|
PyObject * |
n |
|
) |
| |
|
static |
§ rpmdb_length()
§ rpmdb_Match()
§ rpmdb_setattro()
static int rpmdb_setattro |
( |
PyObject * |
o, |
|
|
PyObject * |
n, |
|
|
PyObject * |
v |
|
) |
| |
|
static |
§ rpmdb_subscript()
§ rpmdb_as_mapping
PyMappingMethods rpmdb_as_mapping |
|
static |
Initial value:= {
(objobjargproc)0,
}
static hdrObject * rpmdb_subscript(rpmdbObject *s, PyObject *key)
static int rpmdb_length(rpmdbObject *s)
Definition at line 204 of file rpmdb-py.c.
§ rpmdb_doc
§ rpmdb_methods
struct PyMethodDef rpmdb_methods[] |
|
static |
Initial value:= {
{
"match", (PyCFunction)
rpmdb_Match, METH_VARARGS|METH_KEYWORDS,
"db.match([TagN, [key, [len]]]) -> mi\n\
- Create an rpm db match iterator.\n" },
{NULL, NULL}
}
static rpmmiObject * rpmdb_Match(rpmdbObject *s, PyObject *args, PyObject *kwds)
Definition at line 141 of file rpmdb-py.c.
§ rpmdb_Type