Commit cab6962f authored by cici's avatar cici

*** empty log message ***

parent 062a9ac8
...@@ -30,7 +30,7 @@ Example usage: ...@@ -30,7 +30,7 @@ Example usage:
print i['blah'] print i['blah']
$Id: InvertedIndex.py,v 1.15 1997/02/19 17:05:09 chris Exp $''' $Id: InvertedIndex.py,v 1.16 1997/02/21 19:37:01 cici Exp $'''
# Copyright # Copyright
# #
# Copyright 1996 Digital Creations, L.C., 910 Princess Anne # Copyright 1996 Digital Creations, L.C., 910 Princess Anne
...@@ -82,6 +82,9 @@ $Id: InvertedIndex.py,v 1.15 1997/02/19 17:05:09 chris Exp $''' ...@@ -82,6 +82,9 @@ $Id: InvertedIndex.py,v 1.15 1997/02/19 17:05:09 chris Exp $'''
# (540) 371-6909 # (540) 371-6909
# #
# $Log: InvertedIndex.py,v $ # $Log: InvertedIndex.py,v $
# Revision 1.16 1997/02/21 19:37:01 cici
# *** empty log message ***
#
# Revision 1.15 1997/02/19 17:05:09 chris # Revision 1.15 1997/02/19 17:05:09 chris
# *** empty log message *** # *** empty log message ***
# #
...@@ -132,7 +135,7 @@ $Id: InvertedIndex.py,v 1.15 1997/02/19 17:05:09 chris Exp $''' ...@@ -132,7 +135,7 @@ $Id: InvertedIndex.py,v 1.15 1997/02/19 17:05:09 chris Exp $'''
# #
# #
# #
__version__='$Revision: 1.15 $'[11:-2] __version__='$Revision: 1.16 $'[11:-2]
import regex, regsub, string, SingleThreadedTransaction, copy import regex, regsub, string, SingleThreadedTransaction, copy
...@@ -609,7 +612,8 @@ class PersistentResultList(ResultList, SingleThreadedTransaction.Persistent): ...@@ -609,7 +612,8 @@ class PersistentResultList(ResultList, SingleThreadedTransaction.Persistent):
def addentry(self, key, *info): def addentry(self, key, *info):
'''Add a frequency/key pair to this object''' '''Add a frequency/key pair to this object'''
apply(ResultList.addentry, (self, key) + info) apply(PersistentResultList.inheritedAttribute('addentry'),
(self, key) + info)
self.__changed__(1) self.__changed__(1)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment