[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces - zapi.py:1.4
Jim Fulton
jim@zope.com
Sun, 1 Jun 2003 12:00:04 -0400
Update of /cvs-repository/Zope3/src/zope/app/interfaces
In directory cvs.zope.org:/tmp/cvs-serv25908/src/zope/app/interfaces
Modified Files:
zapi.py
Log Message:
Moved ContextWrapper, getItem, getAttr, queryItem, and queryAttr
from zope.context to zope.app.context.
=== Zope3/src/zope/app/interfaces/zapi.py 1.3 => 1.4 ===
--- Zope3/src/zope/app/interfaces/zapi.py:1.3 Wed May 28 09:16:08 2003
+++ Zope3/src/zope/app/interfaces/zapi.py Sun Jun 1 11:59:33 2003
@@ -16,11 +16,13 @@
$Id$
"""
from zope.component.interfaces import IComponentArchitecture
-from zope.context.interfaces import IContextWrapper
+from zope.app.interfaces.context import IContextWrapper
+from zope.context.interfaces import IWrapperIntrospection
class IZAPI(
IComponentArchitecture,
IContextWrapper,
+ IWrapperIntrospection,
):
"""Convenience API for use with Zope applications.
"""