summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/pyramid/interfaces.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pyramid/interfaces.py b/src/pyramid/interfaces.py
index 11b794e2b..891b851ee 100644
--- a/src/pyramid/interfaces.py
+++ b/src/pyramid/interfaces.py
@@ -484,9 +484,9 @@ class IViewMapperFactory(Interface):
class ISecurityPolicy(Interface):
def identify(request):
- """ Return an object identifying a trusted and verified user.
-
- The object may be anything.
+ """ Return an object identifying a trusted and verified user for the
+ current request. The object can be of any shape, such as a simple ID
+ string or an ORM object.
"""
def authenticated_userid(request, identity):