[Zope-Checkins] CVS: Zope3/lib/python/Zope/App/RDB - IResultSet.py:1.2
Stephan Richter
srichter@cbu.edu
Mon, 24 Jun 2002 09:54:55 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/App/RDB
In directory cvs.zope.org:/tmp/cvs-serv10591
Modified Files:
IResultSet.py
Log Message:
An initial result set interface
=== Zope3/lib/python/Zope/App/RDB/IResultSet.py 1.1 => 1.2 ===
class IResultSet(Interface):
+ """ holds results, and allows iteration """
- pass
+ def __getitem__(index):
+ "return a brain row for index"
+
+
+
+
+
+
+