[PATCH 2/5] tdb: fix typo in python's Tdb.get() docstring

Kirill Smelkov kirr at mns.spb.ru
Wed Oct 21 11:18:55 MDT 2009


It's Tdb.get(), not Tdb.fetch().

Signed-off-by: Kirill Smelkov <kirr at mns.spb.ru>
---
 lib/tdb/pytdb.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/lib/tdb/pytdb.c b/lib/tdb/pytdb.c
index 0d63391..202dca1 100644
--- a/lib/tdb/pytdb.c
+++ b/lib/tdb/pytdb.c
@@ -337,7 +337,7 @@ static PyMethodDef tdb_object_methods[] = {
 	{ "read_lock_all", (PyCFunction)obj_lockall_read, METH_NOARGS, NULL },
 	{ "read_unlock_all", (PyCFunction)obj_unlockall_read, METH_NOARGS, NULL },
 	{ "close", (PyCFunction)obj_close, METH_NOARGS, NULL },
-	{ "get", (PyCFunction)obj_get, METH_VARARGS, "S.fetch(key) -> value\n"
+	{ "get", (PyCFunction)obj_get, METH_VARARGS, "S.get(key) -> value\n"
 		"Fetch a value." },
 	{ "append", (PyCFunction)obj_append, METH_VARARGS, "S.append(key, value) -> None\n"
 		"Append data to an existing key." },
-- 
1.6.5.1.63.ga9d7



More information about the samba-technical mailing list