Home | History | Annotate | Download | only in webapp2_extras

Lines Matching refs:SessionStore

56 #:     :meth:`SessionStore.get_session`.
157 #: A reference to :class:`SessionStore`.
183 :meth:`SessionStore.get_session`.
237 class SessionStore(object):
430 #: Key used to store :class:`SessionStore` in the request registry.
431 _registry_key = 'webapp2_extras.sessions.SessionStore'
434 def get_store(factory=SessionStore, key=_registry_key, request=None):
435 """Returns an instance of :class:`SessionStore` from the request registry.
443 registered. The default is the class :class:`SessionStore` itself.
460 """Sets an instance of :class:`SessionStore` in the request registry.
463 An instance of :class:`SessionStore`.