[Zope-CVS] CVS: Products/ZCTextIndex - QueryParser.py:1.6
Guido van Rossum
guido@python.org
Mon, 20 May 2002 10:18:57 -0400
Update of /cvs-repository/Products/ZCTextIndex
In directory cvs.zope.org:/tmp/cvs-serv16588
Modified Files:
QueryParser.py
Log Message:
Fix unintended recursion in parseQueryEx(). (Unittests are coming up!
:-)
=== Products/ZCTextIndex/QueryParser.py 1.5 => 1.6 ===
def parseQueryEx(self, query):
- tree = self.parseQueryEx(query)
+ tree = self.parseQuery(query)
ignored = self.getIgnored()
return tree, ignored