Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
735cd389
Commit
735cd389
authored
Oct 28, 2007
by
Hanno Schlichting
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a warning about false implements claims to ObjectManager and HTTPRequest
parent
8b619efe
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
lib/python/OFS/ObjectManager.py
lib/python/OFS/ObjectManager.py
+3
-0
lib/python/ZPublisher/HTTPRequest.py
lib/python/ZPublisher/HTTPRequest.py
+4
-0
No files found.
lib/python/OFS/ObjectManager.py
View file @
735cd389
...
...
@@ -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
()
...
...
lib/python/ZPublisher/HTTPRequest.py
View file @
735cd389
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment