summaryrefslogtreecommitdiff
path: root/repoze/bfg/interfaces.py
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-01-25 06:24:03 +0000
committerChris McDonough <chrism@agendaless.com>2009-01-25 06:24:03 +0000
commit23277531195c7d218f8d43768976e5fefb053991 (patch)
tree56f06449cc138c40019b334775b14ad80124f5e5 /repoze/bfg/interfaces.py
parenta81af4583238abbea7f9308397fd89fd615651a1 (diff)
downloadpyramid-23277531195c7d218f8d43768976e5fefb053991.tar.gz
pyramid-23277531195c7d218f8d43768976e5fefb053991.tar.bz2
pyramid-23277531195c7d218f8d43768976e5fefb053991.zip
- Get rid of ``repoze.bfg.security.ACLAuthorizer``: the
``ACLSecurityPolicy`` now does what it did inline. - Get rid of ``repoze.bfg.interfaces.NoAuthorizationInformation`` exception: it was used only by ``ACLAuthorizer``.
Diffstat (limited to 'repoze/bfg/interfaces.py')
-rw-r--r--repoze/bfg/interfaces.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/repoze/bfg/interfaces.py b/repoze/bfg/interfaces.py
index 595bce5c8..42c6d2a11 100644
--- a/repoze/bfg/interfaces.py
+++ b/repoze/bfg/interfaces.py
@@ -128,9 +128,6 @@ class ISecurityPolicy(Interface):
implementation, in which case, it should raise a
``NotImplementedError`` exception."""
-class NoAuthorizationInformation(Exception):
- pass
-
class IViewPermission(Interface):
def __call__(security_policy):
""" Return True if the permission allows, return False if it denies. """