summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTres Seaver <tseaver@palladion.com>2013-02-12 15:21:53 -0500
committerTres Seaver <tseaver@palladion.com>2013-02-12 15:21:53 -0500
commit87c47858cecf489eb7ad5f330766a10fd5365bcd (patch)
tree22c9b58660161c0bccbfc15ce7557ac9e83a7567
parentc9d0427e552eaf7b04eebff6f79a33105de83a6f (diff)
downloadzope-security-87c47858cecf489eb7ad5f330766a10fd5365bcd.tar.gz
Import normalization.
-rw-r--r--src/zope/security/protectclass.py10
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):