summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTheron Luhn <theron@luhn.com>2019-12-17 11:28:51 -0800
committerTheron Luhn <theron@luhn.com>2019-12-17 11:28:51 -0800
commit965dd8295fc9fade649ca61b899811492a0dd2f6 (patch)
treed03de4f3a2ab96b2c823930177e9e6b145100567 /src
parent918155824ec9bdd8f7a08c1b0a3e0c56720e9f41 (diff)
downloadpyramid-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.py2
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.
"""