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
30b9016a
Commit
30b9016a
authored
Jun 12, 2006
by
Andreas Jung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed patch for #1944 since the tests broke
parent
e90a36c2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
15 deletions
+1
-15
doc/CHANGES.txt
doc/CHANGES.txt
+0
-2
lib/python/ZPublisher/HTTPRequest.py
lib/python/ZPublisher/HTTPRequest.py
+1
-1
lib/python/ZPublisher/tests/testHTTPRequest.py
lib/python/ZPublisher/tests/testHTTPRequest.py
+0
-12
No files found.
doc/CHANGES.txt
View file @
30b9016a
...
@@ -27,8 +27,6 @@ Zope Changes
...
@@ -27,8 +27,6 @@ Zope Changes
- Collector #2073: fixed misbehaviour of OFS.Owned.changeOwnership
- Collector #2073: fixed misbehaviour of OFS.Owned.changeOwnership
- Collector #1944: HTTPRequest.resolve_url has error in raising errors
Zope 2.9.3 (2006/05/13)
Zope 2.9.3 (2006/05/13)
Bugs fixed
Bugs fixed
...
...
lib/python/ZPublisher/HTTPRequest.py
View file @
30b9016a
...
@@ -1039,7 +1039,7 @@ class HTTPRequest(BaseRequest):
...
@@ -1039,7 +1039,7 @@ class HTTPRequest(BaseRequest):
except
:
rsp
.
exception
()
except
:
rsp
.
exception
()
if
object
is
None
:
if
object
is
None
:
req
.
close
()
req
.
close
()
raise
sys
.
exc_info
()[
0
],
rsp
.
errmsg
raise
rsp
.
errmsg
,
sys
.
exc_info
()[
1
]
# The traversal machinery may return a "default object"
# The traversal machinery may return a "default object"
# like an index_html document. This is not appropriate
# like an index_html document. This is not appropriate
...
...
lib/python/ZPublisher/tests/testHTTPRequest.py
View file @
30b9016a
...
@@ -701,18 +701,6 @@ class RequestTests( unittest.TestCase ):
...
@@ -701,18 +701,6 @@ class RequestTests( unittest.TestCase ):
f
.
seek
(
0
)
f
.
seek
(
0
)
self
.
assertEqual
(
f
.
xreadlines
(),
f
)
self
.
assertEqual
(
f
.
xreadlines
(),
f
)
def
testResolveUrl
(
self
):
# Check that ResolveUrl really raises the same error
# it received from ZPublisher.BaseRequest.traverse
# collector entry 1944
from
ZPublisher.HTTPRequest
import
HTTPRequest
from
zExceptions
import
NotFound
env
=
TEST_ENVIRON
.
copy
()
req
=
HTTPRequest
(
None
,
env
,
None
)
req
[
'PARENTS'
]
=
[
'Nobody'
,
'cares'
,
'here'
]
testmethod
=
req
.
resolve_url
self
.
assertRaises
(
NotFound
,
testmethod
,
'http://localhost/does_not_exist'
)
def
test_suite
():
def
test_suite
():
suite
=
unittest
.
TestSuite
()
suite
=
unittest
.
TestSuite
()
...
...
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