Tres Seaver
2009-04-20 64ba132a55e6da05d27dfc395615579438f8ea1c
Added a paragraph to ``IAuthenticator`` docstring, documenting that plugins
are allowed to add keys to the ``identity`` dictionary (e.g., to save a
second database query ini an ``IMetadataProvider`` plugin).

3 files modified
13 ■■■■■ changed files
CHANGES.txt 7 ●●●●● patch | view | raw | blame | history
repoze/who/interfaces.py 4 ●●●● patch | view | raw | blame | history
setup.py 2 ●●● patch | view | raw | blame | history
CHANGES.txt
@@ -2,6 +2,13 @@
repoze.who changes
==================
After 1.0.12
============
- Added a paragraph to ``IAuthenticator`` docstring, documenting that plugins
  are allowed to add keys to the ``identity`` dictionary (e.g., to save a
  second database query ini an ``IMetadataProvider`` plugin).
1.0.12 (2009/4/19)
==================
repoze/who/interfaces.py
@@ -141,6 +141,10 @@
        dictionary, it should check for the existence of these keys
        before attempting to do anything; if they don't exist, it
        should return None).
        An authenticator is permitted to add extra keys to the 'identity'
        dictionary (e.g., to save metadata from a database query, rather
        than requiring a separate query from an IMetadataProvider plugin).
        """
class IChallenger(IPlugin):
setup.py
@@ -19,7 +19,7 @@
from setuptools import setup, find_packages
__version__ = '1.0.12'
__version__ = '1.0.12+'
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.txt')).read()