summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 38639ac)
raw | patch | inline | side by side (parent: 38639ac)
author | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Sun, 14 Jul 2002 23:17:24 +0000 (23:17 +0000) | ||
committer | richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Sun, 14 Jul 2002 23:17:24 +0000 (23:17 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@879 57a73879-2fb5-44c3-a270-3262357dd7e2
roundup/indexer.py | patch | blob | history |
diff --git a/roundup/indexer.py b/roundup/indexer.py
index aad5a5a59a21fdc2dc4979e930a7bf179b4d03e0..814425a5848798585704549ad35f965be45e19c8 100644 (file)
--- a/roundup/indexer.py
+++ b/roundup/indexer.py
# that promote freedom, but obviously am giving up any rights
# to compel such.
#
-#$Id: indexer.py,v 1.9 2002-07-14 06:11:16 richard Exp $
+#$Id: indexer.py,v 1.10 2002-07-14 23:17:24 richard Exp $
'''
This module provides an indexer class, RoundupIndexer, that stores text
indices in a roundup instance. This class makes searching the content of
os.remove(self.indexdb + segment)
except OSError, error:
# probably just nonexistent segment index file
- if error.errno != errno.EEXIST: raise
+ if error.errno != errno.ENOENT: raise
# First write the much simpler filename/fileid dictionaries
dbfil = {'WORDS':None, 'FILES':self.files, 'FILEIDS':self.fileids}
#
#$Log: not supported by cvs2svn $
+#Revision 1.9 2002/07/14 06:11:16 richard
+#Some TODOs
+#
#Revision 1.8 2002/07/09 21:53:38 gmcm
#Optimize Class.find so that the propspec can contain a set of ids to match.
#This is used by indexer.search so it can do just one find for all the index matches.