summaryrefslogtreecommitdiff
path: root/CHANGES.txt
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-08-20 16:45:03 -0400
committerChris McDonough <chrism@plope.com>2011-08-20 16:45:03 -0400
commit449287942782a24dbe31a60ca791d677fd0ba003 (patch)
treeb0d4b90186522e68ea8b9a06cd2528013a92273c /CHANGES.txt
parentb8c79771a186f1032635fc640b3cecc2c9e281ad (diff)
downloadpyramid-449287942782a24dbe31a60ca791d677fd0ba003.tar.gz
pyramid-449287942782a24dbe31a60ca791d677fd0ba003.tar.bz2
pyramid-449287942782a24dbe31a60ca791d677fd0ba003.zip
- The ``RemoteUserAuthenticationPolicy ``, ``AuthTktAuthenticationPolicy``,
and ``SessionAuthenticationPolicy`` constructors now accept an additional keyword argument named ``debug``. By default, this keyword argument is ``False``. When it is ``True``, debug information will be sent to the Pyramid debug logger (usually on stderr) when the ``authenticated_userid`` or ``effective_principals`` method is called on any of these policies. The output produced can be useful when trying to diagnose authentication-related problems.
Diffstat (limited to 'CHANGES.txt')
-rw-r--r--CHANGES.txt9
1 files changed, 9 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 2940a8228..47f3dcde3 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -89,6 +89,15 @@ Features
Previously, trying to generate a URL to an asset using an absolute file
path would raise a ValueError.
+- The ``RemoteUserAuthenticationPolicy ``, ``AuthTktAuthenticationPolicy``,
+ and ``SessionAuthenticationPolicy`` constructors now accept an additional
+ keyword argument named ``debug``. By default, this keyword argument is
+ ``False``. When it is ``True``, debug information will be sent to the
+ Pyramid debug logger (usually on stderr) when the ``authenticated_userid``
+ or ``effective_principals`` method is called on any of these policies. The
+ output produced can be useful when trying to diagnose
+ authentication-related problems.
+
Internal
--------