[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces - zapi.py:1.7

Jim Fulton jim@zope.com
Thu, 12 Jun 2003 05:33:47 -0400


Update of /cvs-repository/Zope3/src/zope/app/interfaces
In directory cvs.zope.org:/tmp/cvs-serv27004/src/zope/app/interfaces

Modified Files:
	zapi.py 
Log Message:
Added the context-descriptor utilities.


=== Zope3/src/zope/app/interfaces/zapi.py 1.6 => 1.7 ===
--- Zope3/src/zope/app/interfaces/zapi.py:1.6	Tue Jun  3 15:50:41 2003
+++ Zope3/src/zope/app/interfaces/zapi.py	Thu Jun 12 05:33:47 2003
@@ -18,12 +18,14 @@
 from zope.component.interfaces import IComponentArchitecture
 from zope.app.interfaces.context import IContextWrapper
 from zope.context.interfaces import IWrapperIntrospection
+from zope.context.interfaces import IContextAwareDescriptorSupport
 from zope.app.interfaces.traversing import ITraversalAPI
 
 class IZAPI(
     IComponentArchitecture,
     IContextWrapper,
     IWrapperIntrospection,
+    IContextAwareDescriptorSupport,
     ITraversalAPI,
     ):
     """Convenience API for use with Zope applications.