diff options
| author | Theron Luhn <theron@luhn.com> | 2020-10-14 16:30:16 -0700 |
|---|---|---|
| committer | Theron Luhn <theron@luhn.com> | 2020-10-14 16:30:16 -0700 |
| commit | 139462d451a1c35679b464690953333dd95389a1 (patch) | |
| tree | b43939bb617a884c0f67b6b9a5d67bdb31d41790 | |
| parent | ab80ac7996bf792ddf3fbcce639e4b6714b401e6 (diff) | |
| download | pyramid-139462d451a1c35679b464690953333dd95389a1.tar.gz pyramid-139462d451a1c35679b464690953333dd95389a1.tar.bz2 pyramid-139462d451a1c35679b464690953333dd95389a1.zip | |
Update identity docstring.
| -rw-r--r-- | src/pyramid/interfaces.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pyramid/interfaces.py b/src/pyramid/interfaces.py index 599c38473..0b7a07040 100644 --- a/src/pyramid/interfaces.py +++ b/src/pyramid/interfaces.py @@ -114,9 +114,9 @@ class IResponse(Interface): serves up only the given start:stop range.""" identity = Attribute( - """An object representing the authenticated user, as determined by - the security policy in use, or ``None`` for unauthenticated requests. - The object's class and meaning is defined by the security policy.""" + """An object containing authentication information related to the + current request. The object's type and meaning is defined by the + configured security policy.""" ) authenticated_userid = Attribute( |
