Mercurial > p > roundup > code
diff roundup/backends/back_anydbm.py @ 1131:92e92ae58494
add close() methods where they are missing!
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 12 Sep 2002 07:23:23 +0000 |
| parents | 22517f9e3b1e |
| children | c7119e74fcf8 |
line wrap: on
line diff
--- a/roundup/backends/back_anydbm.py Thu Sep 12 07:00:41 2002 +0000 +++ b/roundup/backends/back_anydbm.py Thu Sep 12 07:23:23 2002 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -#$Id: back_anydbm.py,v 1.76 2002-09-12 05:51:42 richard Exp $ +#$Id: back_anydbm.py,v 1.77 2002-09-12 07:23:23 richard Exp $ ''' This module defines a backend that saves the hyperdatabase in a database chosen by anydbm. It is guaranteed to always be available in python @@ -678,6 +678,11 @@ self.destroyednodes = {} self.transactions = [] + def close(self): + ''' Nothing to do + ''' + pass + _marker = [] class Class(hyperdb.Class): '''The handle to a particular class of nodes in a hyperdatabase.'''
