[Zope-Checkins] CVS: Zope/lib/python/Products/PluginIndexes/TextIndexNG/queryparser - Stack.py:1.1.2.2

Andreas Jung andreas@digicool.com
Wed, 16 Jan 2002 10:19:53 -0500


Update of /cvs-repository/Zope/lib/python/Products/PluginIndexes/TextIndexNG/queryparser
In directory cvs.zope.org:/tmp/cvs-serv28808

Modified Files:
      Tag: ajung-textindexng-branch
	Stack.py 
Log Message:
added __str__,__repr__


=== Zope/lib/python/Products/PluginIndexes/TextIndexNG/queryparser/Stack.py 1.1.2.1 => 1.1.2.2 ===
         return item
 
+    def __str__(self):
+        return str(self.lst)
+
+    __repr__ = __str__
+
+
 def test():
 
     s = Stack()