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
93fb5f64
Commit
93fb5f64
authored
Dec 01, 2005
by
Tres Seaver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up after ourselves.
parent
55000590
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
lib/python/AccessControl/tests/testZopeGuards.py
lib/python/AccessControl/tests/testZopeGuards.py
+6
-1
No files found.
lib/python/AccessControl/tests/testZopeGuards.py
View file @
93fb5f64
...
@@ -395,10 +395,13 @@ class TestActualPython(GuardTestCase):
...
@@ -395,10 +395,13 @@ class TestActualPython(GuardTestCase):
_old_mgr
=
_old_policy
=
_marker
=
[]
_old_mgr
=
_old_policy
=
_marker
=
[]
def
setUp
(
self
):
def
setUp
(
self
):
pass
self
.
_wrapped_dicts
=
[]
def
tearDown
(
self
):
def
tearDown
(
self
):
self
.
_restorePolicyAndManager
()
self
.
_restorePolicyAndManager
()
for
munged
,
orig
in
self
.
_wrapped_dicts
:
munged
.
update
(
orig
)
del
self
.
_wrapped_dicts
def
_initPolicyAndManager
(
self
,
manager
=
None
):
def
_initPolicyAndManager
(
self
,
manager
=
None
):
from
AccessControl.SecurityManagement
import
get_ident
from
AccessControl.SecurityManagement
import
get_ident
...
@@ -644,6 +647,8 @@ print foo(**kw)
...
@@ -644,6 +647,8 @@ print foo(**kw)
# tell whether they're executed.
# tell whether they're executed.
def
_wrap_replaced_dict_callables
(
self
,
d
):
def
_wrap_replaced_dict_callables
(
self
,
d
):
import
__builtin__
import
__builtin__
orig
=
d
.
copy
()
self
.
_wrapped_dicts
.
append
((
d
,
orig
))
for
k
,
v
in
d
.
items
():
for
k
,
v
in
d
.
items
():
if
callable
(
v
)
and
v
is
not
getattr
(
__builtin__
,
k
,
None
):
if
callable
(
v
)
and
v
is
not
getattr
(
__builtin__
,
k
,
None
):
d
[
k
]
=
FuncWrapper
(
k
,
v
)
d
[
k
]
=
FuncWrapper
(
k
,
v
)
...
...
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