[Zope3-checkins] CVS: Zope3/src/zope/schema - interfaces.py:1.17

Fred L. Drake, Jr. fred@zope.com
Wed, 21 May 2003 17:11:24 -0400


Update of /cvs-repository/Zope3/src/zope/schema
In directory cvs.zope.org:/tmp/cvs-serv28591/schema

Modified Files:
	interfaces.py 
Log Message:
Lots of refactoring, separating out some helper classes to make reuse
easier in (at least some) advanced applications.


=== Zope3/src/zope/schema/interfaces.py 1.16 => 1.17 ===
--- Zope3/src/zope/schema/interfaces.py:1.16	Tue May 20 12:10:30 2003
+++ Zope3/src/zope/schema/interfaces.py	Wed May 21 17:11:23 2003
@@ -435,6 +435,10 @@
                            query view.
                            """)
 
+class IIterableVocabularyQuery(IVocabularyQuery):
+    """Marker interface for a query for a vocabulary that is iterable
+    but does not support a specialized query interface."""
+
 
 class ITerm(Interface):
     """Object representing a single value in a vocabulary."""