Log message for revision 67589:
  give site manager a __bases__ argument which is required in Zope 3.3 
(jim-adapter
  branch)
  

Changed:
  U   Products.Five/branches/philikon-local-components/site/localsite.py

-=-
Modified: Products.Five/branches/philikon-local-components/site/localsite.py
===================================================================
--- Products.Five/branches/philikon-local-components/site/localsite.py  
2006-04-25 09:52:03 UTC (rev 67588)
+++ Products.Five/branches/philikon-local-components/site/localsite.py  
2006-04-25 09:57:35 UTC (rev 67589)
@@ -31,6 +31,13 @@
         self.context = self.__parent__ = context
 
     @property
+    def __bases__(self):
+        next = self.next
+        if next is None:
+            return ()
+        return (next,)
+
+    @property
     def next(self):
         obj = self.context
         while obj is not None:

_______________________________________________
Zope-Checkins maillist  -  Zope-Checkins@zope.org
http://mail.zope.org/mailman/listinfo/zope-checkins

Reply via email to