From 99d77b9c7358c456fe3b12da7743f3fd3b6ce00b Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Tue, 11 Oct 2011 08:05:35 -0400 Subject: docstring --- pyramid/authentication.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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=, + ``tokens=``""" return self.cookie.remember(request, principal, **kw) def forget(self, request): -- cgit v1.2.3