[Zope3-checkins]
SVN: Zope3/trunk/src/zope/app/dependable/__init__.py
Use object as base class instead module-wide __metaclass__.
Stephan Richter
srichter at cosmos.phy.tufts.edu
Tue Jul 13 17:47:43 EDT 2004
Log message for revision 26509:
Use object as base class instead module-wide __metaclass__.
Changed:
U Zope3/trunk/src/zope/app/dependable/__init__.py
-=-
Modified: Zope3/trunk/src/zope/app/dependable/__init__.py
===================================================================
--- Zope3/trunk/src/zope/app/dependable/__init__.py 2004-07-13 19:19:55 UTC (rev 26508)
+++ Zope3/trunk/src/zope/app/dependable/__init__.py 2004-07-13 21:47:43 UTC (rev 26509)
@@ -11,20 +11,17 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
-"""
+"""Dependable Framework.
+
$Id$
"""
-
-__metaclass__ = type
-
from interfaces import IDependable
from zope.app.annotation.interfaces import IAnnotations
from zope.app.traversing.api import getParent, canonicalPath, getPath
from zope.interface import implements
-class PathSetAnnotation:
-
+class PathSetAnnotation(object):
"""Abstract base class for annotations that are sets of paths.
To make this into a concrete class, a subclass must set the class
More information about the Zope3-Checkins
mailing list