summaryrefslogtreecommitdiff
path: root/src/zope/security/adapter.py
diff options
context:
space:
mode:
authorTres Seaver <tseaver@palladion.com>2013-02-13 16:49:01 -0500
committerTres Seaver <tseaver@palladion.com>2013-02-13 16:49:01 -0500
commitf17d2b2c38ef6df29bb46a2bd9e434e79506c574 (patch)
tree4a7692bd2cdc4f0b2763e7e1a1b6fe5d7cbbd440 /src/zope/security/adapter.py
parente16629843d12cfc7f396c6c4ff53ecc2a06ed4ed (diff)
downloadzope-security-f17d2b2c38ef6df29bb46a2bd9e434e79506c574.tar.gz
Get all tests passing (or suppressed) on Py3k.
Diffstat (limited to 'src/zope/security/adapter.py')
-rw-r--r--src/zope/security/adapter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zope/security/adapter.py b/src/zope/security/adapter.py
index eaefff7..c830cf4 100644
--- a/src/zope/security/adapter.py
+++ b/src/zope/security/adapter.py
@@ -73,7 +73,7 @@ class LocatingTrustedAdapterFactory(object):
def __call__(self, *args):
for arg in args:
if removeSecurityProxy(arg) is not arg:
- args = map(removeSecurityProxy, args)
+ args = [removeSecurityProxy(x) for x in args]
adapter = self.factory(*args)
adapter = self._customizeProtected(adapter, args[0])
return ProxyFactory(adapter)