Log message for revision 81164:
  Added a warning about false implements claims to ObjectManager and HTTPRequest
  

Changed:
  U   Zope/trunk/lib/python/OFS/ObjectManager.py
  U   Zope/trunk/lib/python/ZPublisher/HTTPRequest.py

-=-
Modified: Zope/trunk/lib/python/OFS/ObjectManager.py
===================================================================
--- Zope/trunk/lib/python/OFS/ObjectManager.py  2007-10-28 08:57:32 UTC (rev 
81163)
+++ Zope/trunk/lib/python/OFS/ObjectManager.py  2007-10-28 09:30:26 UTC (rev 
81164)
@@ -142,6 +142,9 @@
     This class provides core behavior for collections of heterogeneous objects.
     """
 
+    # The claim to implement IContainer has been made during the Zope3
+    # integration project called Five but hasn't been completed in full.
+
     implements(IObjectManager, IContainer)
 
     security = ClassSecurityInfo()

Modified: Zope/trunk/lib/python/ZPublisher/HTTPRequest.py
===================================================================
--- Zope/trunk/lib/python/ZPublisher/HTTPRequest.py     2007-10-28 08:57:32 UTC 
(rev 81163)
+++ Zope/trunk/lib/python/ZPublisher/HTTPRequest.py     2007-10-28 09:30:26 UTC 
(rev 81164)
@@ -121,6 +121,10 @@
     values will be looked up in the order: environment variables,
     other variables, form data, and then cookies.
     """
+
+    # The claim to implement IBrowserRequest has been made during the Zope3
+    # integration project called Five but hasn't been completed in full.
+
     implements(IBrowserRequest)
 
     _hacked_path=None

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

Reply via email to