Mercurial > p > roundup > code
diff roundup/hyperdb.py @ 570:e346a9792335
fixed back_bsddb so it passed the journal tests
... it didn't seem happy using the back_anydbm _open method, which is odd.
Yet another occurrance of whichdb not being able to recognise older bsddb
databases. Yadda yadda. Made the HYPERDBDEBUG stuff more sane in the
process.
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Tue, 22 Jan 2002 07:21:13 +0000 |
| parents | 62febbd7ffec |
| children | edd210915e64 |
line wrap: on
line diff
--- a/roundup/hyperdb.py Tue Jan 22 07:08:50 2002 +0000 +++ b/roundup/hyperdb.py Tue Jan 22 07:21:13 2002 +0000 @@ -15,18 +15,19 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: hyperdb.py,v 1.52 2002-01-21 16:33:19 rochecompaan Exp $ +# $Id: hyperdb.py,v 1.53 2002-01-22 07:21:13 richard Exp $ __doc__ = """ Hyperdatabase implementation, especially field types. """ # standard python modules -import cPickle, re, string, weakref +import cPickle, re, string, weakref, os # roundup modules import date, password +DEBUG = os.environ.get('HYPERDBDEBUG', '') # # Types @@ -1065,6 +1066,9 @@ # # $Log: not supported by cvs2svn $ +# Revision 1.52 2002/01/21 16:33:19 rochecompaan +# You can now use the roundup-admin tool to pack the database +# # Revision 1.51 2002/01/21 03:01:29 richard # brief docco on the do_journal argument #
