diff options
| -rw-r--r-- | pyramid/security.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/pyramid/security.py b/pyramid/security.py index 848574233..aa4aece69 100644 --- a/pyramid/security.py +++ b/pyramid/security.py @@ -160,9 +160,6 @@ def forget(request): If no :term:`authentication policy` is in use, this function will always return an empty sequence. - - .. deprecated:: 1.5 - Use :meth:`pyramid.request.Request.get_logout_headers` instead. """ policy = _get_authentication_policy(request) if policy is None: @@ -354,7 +351,7 @@ class AuthenticationAPIMixin(object): if policy is None: return [Everyone] return policy.effective_principals(self) - + class AuthorizationAPIMixin(object): def has_permission(self, permission, context=None): |
