1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

tdb: Fix python documentation for tdb module

This commit is contained in:
Amitay Isaacs 2011-12-11 16:09:32 +11:00
parent eee2191076
commit 20789bfdde

View File

@ -539,7 +539,7 @@ static PyMappingMethods tdb_object_mapping = {
.mp_ass_subscript = (objobjargproc)obj_setitem,
};
static PyTypeObject PyTdb = {
.tp_name = "Tdb",
.tp_name = "tdb.Tdb",
.tp_basicsize = sizeof(PyTdbObject),
.tp_methods = tdb_object_methods,
.tp_getset = tdb_object_getsetters,