python/dist/src/Modules _bsddb.c,1.37,1.38
Update of /cvsroot/python/python/dist/src/Modules In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12100 Modified Files: _bsddb.c Log Message: SF bug 1017405: the keys() values() and items() DB methods were ignoring their transaction (txn) argument. Index: _bsddb.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/_bsddb.c,v retrieving revision 1.37 retrieving revision 1.38 diff -u -d -r1.37 -r1.38 --- _bsddb.c 9 Jul 2004 23:33:06 -0000 1.37 +++ _bsddb.c 4 Sep 2004 01:36:59 -0000 1.38 @@ -2570,7 +2570,7 @@ /* get a cursor */ MYDB_BEGIN_ALLOW_THREADS; - err = self->db->cursor(self->db, NULL, &cursor, 0); + err = self->db->cursor(self->db, txn, &cursor, 0); MYDB_END_ALLOW_THREADS; RETURN_IF_ERR();
participants (1)
-
gregļ¼ users.sourceforge.net