Skip to content
This repository has been archived by the owner on May 13, 2020. It is now read-only.

Commit

Permalink
Make the Lexicon class persistent.
Browse files Browse the repository at this point in the history
  • Loading branch information
gvanrossum committed May 23, 2002
1 parent e660e04 commit 001e5e7
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Lexicon.py
Expand Up @@ -17,12 +17,15 @@
from BTrees.IOBTree import IOBTree
from BTrees.OIBTree import OIBTree

import ZODB
from Persistence import Persistent

from Products.ZCTextIndex.ILexicon import ILexicon
from Products.ZCTextIndex.StopDict import get_stopdict
from Products.ZCTextIndex.ParseTree import QueryError
from Products.ZCTextIndex.PipelineFactory import element_factory

class Lexicon:
class Lexicon(Persistent):

__implements__ = ILexicon

Expand Down

0 comments on commit 001e5e7

Please sign in to comment.