diff roundup/backends/indexer_dbm.py @ 3613:5f4db2650da3

implement close() on all indexers [SF#1242477]
author Richard Jones <richard@users.sourceforge.net>
date Thu, 27 Apr 2006 05:48:26 +0000
parents 91c495476db3
children 2ff6f39aa391
line wrap: on
line diff
--- a/roundup/backends/indexer_dbm.py	Thu Apr 27 05:15:17 2006 +0000
+++ b/roundup/backends/indexer_dbm.py	Thu Apr 27 05:48:26 2006 +0000
@@ -14,7 +14,7 @@
 #     that promote freedom, but obviously am giving up any rights
 #     to compel such.
 # 
-#$Id: indexer_dbm.py,v 1.8 2006-02-10 00:16:13 richard Exp $
+#$Id: indexer_dbm.py,v 1.9 2006-04-27 05:48:26 richard Exp $
 '''This module provides an indexer class, RoundupIndexer, that stores text
 indices in a roundup instance.  This class makes searching the content of
 messages, string properties and text files possible.
@@ -285,4 +285,8 @@
         ''' load last saved index info. '''
         self.load_index(reload=1)
 
+    def close(self):
+        pass
+
+
 # vim: set filetype=python ts=4 sw=4 et si

Roundup Issue Tracker: http://roundup-tracker.org/