diff options
| author | Tres Seaver <tseaver@palladion.com> | 2013-02-12 15:21:53 -0500 |
|---|---|---|
| committer | Tres Seaver <tseaver@palladion.com> | 2013-02-12 15:21:53 -0500 |
| commit | 87c47858cecf489eb7ad5f330766a10fd5365bcd (patch) | |
| tree | 22c9b58660161c0bccbfc15ce7557ac9e83a7567 /src | |
| parent | c9d0427e552eaf7b04eebff6f79a33105de83a6f (diff) | |
| download | zope-security-87c47858cecf489eb7ad5f330766a10fd5365bcd.tar.gz | |
Import normalization.
Diffstat (limited to 'src')
| -rw-r--r-- | src/zope/security/protectclass.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/zope/security/protectclass.py b/src/zope/security/protectclass.py index 937fd59..57effb3 100644 --- a/src/zope/security/protectclass.py +++ b/src/zope/security/protectclass.py @@ -11,11 +11,13 @@ # FOR A PARTICULAR PURPOSE. # ############################################################################## -"""Make assertions about permissions needed to access class instances -attributes +"""Make assertions about permissions needed to access instance attributes """ -from zope.security.checker import defineChecker, getCheckerForInstancesOf -from zope.security.checker import Checker, CheckerPublic + +from zope.security.checker import Checker +from zope.security.checker import CheckerPublic +from zope.security.checker import defineChecker +from zope.security.checker import getCheckerForInstancesOf def protectName(class_, name, permission): |
