More doc updates

This commit is contained in:
Armin Ronacher 2011-07-07 13:11:32 +02:00
parent 7290981cef
commit 10f8dc18b8

View file

@ -30,12 +30,14 @@ class SessionMixin(object):
del _get_permanent, _set_permanent
#: some session backends can tell you if a session is new, but that is
#: not necessarily guaranteed. Use with caution.
#: not necessarily guaranteed. Use with caution. The default mixin
#: implementation just hardcodes `False` in.
new = False
#: for some backends this will always be `True`, but some backends will
#: default this to false and detect changes in the dictionary for as
#: long as changes do not happen on mutable structures in the session.
#: The default mixin implementation just hardcodes `True` in.
modified = True