[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces - zapi.py:1.3
Steve Alexander
steve@cat-box.net
Wed, 28 May 2003 09:16:39 -0400
Update of /cvs-repository/Zope3/src/zope/app/interfaces
In directory cvs.zope.org:/tmp/cvs-serv21960/src/zope/app/interfaces
Modified Files:
zapi.py
Log Message:
Removed decorators in preparation for work on new decorators.
=== Zope3/src/zope/app/interfaces/zapi.py 1.2 => 1.3 ===
--- Zope3/src/zope/app/interfaces/zapi.py:1.2 Tue May 27 10:18:18 2003
+++ Zope3/src/zope/app/interfaces/zapi.py Wed May 28 09:16:08 2003
@@ -16,13 +16,13 @@
$Id$
"""
from zope.component.interfaces import IComponentArchitecture
-from zope.context.interfaces import IContextDecorator
+from zope.context.interfaces import IContextWrapper
class IZAPI(
IComponentArchitecture,
- IContextDecorator,
+ IContextWrapper,
):
- """Convenmience API for creating Zope applications.
+ """Convenience API for use with Zope applications.
"""
def name(object):
@@ -30,6 +30,4 @@
This is the name the object is stored under in the container
it was accessed in. If the name is unknown, None is returned.
-
"""
-