diff options
| author | Theron Luhn <theron@luhn.com> | 2019-12-17 11:28:51 -0800 |
|---|---|---|
| committer | Theron Luhn <theron@luhn.com> | 2019-12-17 11:28:51 -0800 |
| commit | 965dd8295fc9fade649ca61b899811492a0dd2f6 (patch) | |
| tree | d03de4f3a2ab96b2c823930177e9e6b145100567 /src | |
| parent | 918155824ec9bdd8f7a08c1b0a3e0c56720e9f41 (diff) | |
| download | pyramid-965dd8295fc9fade649ca61b899811492a0dd2f6.tar.gz pyramid-965dd8295fc9fade649ca61b899811492a0dd2f6.tar.bz2 pyramid-965dd8295fc9fade649ca61b899811492a0dd2f6.zip | |
Remove `identity` from authenticated_userid interface.
Diffstat (limited to 'src')
| -rw-r--r-- | src/pyramid/interfaces.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pyramid/interfaces.py b/src/pyramid/interfaces.py index c0ff317a4..af3c61503 100644 --- a/src/pyramid/interfaces.py +++ b/src/pyramid/interfaces.py @@ -483,7 +483,7 @@ class IViewMapperFactory(Interface): class ISecurityPolicy(Interface): - def authenticated_userid(request, identity): + def authenticated_userid(request): """ Return a :term:`userid` string identifying the trusted and verified user, or ``None`` if unauthenticated. """ |
