1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-27 03:21:53 +03:00

r25046: Ditch tdb_traverse() as it doesn't lend itself to any Python idioms

and the semantics can be reproduced using tdb_firstkey() and
tdb_nextkey().  Oh, and also because I can't figure out how to get SWIG
to do exactly what I want here.
(This used to be commit 59b44a9796)
This commit is contained in:
Tim Potter 2007-09-09 12:02:51 +00:00 committed by Gerald (Jerry) Carter
parent 90b692de7d
commit 43742e53c9

View File

@ -149,6 +149,4 @@ TDB_DATA tdb_firstkey(TDB_CONTEXT *tdb);
TDB_DATA tdb_nextkey(TDB_CONTEXT *tdb, TDB_DATA key);
int tdb_traverse(TDB_CONTEXT *tdb, tdb_traverse_func fn, void *state);
int tdb_exists(TDB_CONTEXT *tdb, TDB_DATA key);