[issue1275] bsddb closing a DB object before all DBCursors using it are closed crashes

2010-03-17 Thread Jesús Cea Avión
Changes by Jesús Cea Avión : -- resolution: -> out of date status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing

[issue1275] bsddb closing a DB object before all DBCursors using it are closed crashes

2008-05-16 Thread Gregory P. Smith
Gregory P. Smith <[EMAIL PROTECTED]> added the comment: This is fixed in trunk now that jcea has done his merge. If anyone wants it fixed in release25-maint it'll need a volunteer to backport just the bugfix parts without the bsddb 4.6.x feature additions. -- assignee: gregory.p.smith -

[issue1275] bsddb closing a DB object before all DBCursors using it are closed crashes

2008-03-10 Thread Jesús Cea Avión
Jesús Cea Avión <[EMAIL PROTECTED]> added the comment: This issue is solved in pybsddb 4.6.1, available in pypi. Python bsddb3 module must be updated and this issue closed as "fixed". -- nosy: +jcea __ Tracker <[EMAIL PROTECTED]>

[issue1275] bsddb closing a DB object before all DBCursors using it are closed crashes

2008-01-20 Thread Gregory P. Smith
Gregory P. Smith added the comment: a code snipped using a database d that demonstrates this: c = d.cursor() d.close() print >>sys.stderr, "database closed before cursor" del c print >>sys.stderr, "cursor deleted and we didn't crash!" -- priority: -> normal versions

[issue1275] bsddb closing a DB object before all DBCursors using it are closed crashes

2007-10-12 Thread Gregory P. Smith
New submission from Gregory P. Smith: If a bsddb.db.DB object is closed before any DBCursor objects referencing it are closed, python will crash when the cursors are closed or deleted. Workaround: never close a database with open cursors. this is annoying in unittest code where a tearDown metho