summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pyramid/authentication.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pyramid/authentication.py b/pyramid/authentication.py
index d17117055..ef64a361d 100644
--- a/pyramid/authentication.py
+++ b/pyramid/authentication.py
@@ -384,7 +384,8 @@ class AuthTktAuthenticationPolicy(CallbackAuthenticationPolicy):
return result['userid']
def remember(self, request, principal, **kw):
- """ Accepts the following kw args: ``max_age``."""
+ """ Accepts the following kw args: ``max_age=<int-seconds>,
+ ``tokens=<sequence-of-ascii-strings>``"""
return self.cookie.remember(request, principal, **kw)
def forget(self, request):