Commit 735cd389 authored by Hanno Schlichting's avatar Hanno Schlichting

Added a warning about false implements claims to ObjectManager and HTTPRequest

parent 8b619efe
......@@ -142,6 +142,9 @@ class ObjectManager(
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()
......
......@@ -121,6 +121,10 @@ class HTTPRequest(BaseRequest):
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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment