Class used to generate nicer error messages if sessions are not
available. Will still allow read-only access to the empty session but
fail on setting.
|
v, remove specified key and return the corresponding value
|
setdefault(self,
*args,
**kwargs)
If key is not found, d is returned if given, otherwise KeyError is
raised |
|
|
|
v, remove specified key and return the corresponding value
|
update(self,
*args,
**kwargs)
If key is not found, d is returned if given, otherwise KeyError is
raised |
|
|
|
v, remove specified key and return the corresponding value
|
popitem(self,
*args,
**kwargs)
If key is not found, d is returned if given, otherwise KeyError is
raised |
|
|
|
v, remove specified key and return the corresponding value
|
pop(self,
*args,
**kwargs)
If key is not found, d is returned if given, otherwise KeyError is
raised |
|
|
|
v, remove specified key and return the corresponding value
|
clear(self,
*args,
**kwargs)
If key is not found, d is returned if given, otherwise KeyError is
raised |
|
|
|
v, remove specified key and return the corresponding value
|
__delitem__(self,
*args,
**kwargs)
If key is not found, d is returned if given, otherwise KeyError is
raised |
|
|
|
v, remove specified key and return the corresponding value
|
__setitem__(self,
*args,
**kwargs)
If key is not found, d is returned if given, otherwise KeyError is
raised |
|
|
|
Inherited from SecureCookieSession:
__init__
Inherited from werkzeug.datastructures.CallbackDict:
__repr__
Inherited from dict:
__cmp__,
__contains__,
__eq__,
__ge__,
__getattribute__,
__getitem__,
__gt__,
__iter__,
__le__,
__len__,
__lt__,
__ne__,
__new__,
__sizeof__,
copy,
fromkeys,
get,
has_key,
items,
iteritems,
iterkeys,
itervalues,
keys,
values,
viewitems,
viewkeys,
viewvalues
|