You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
462 B

# -*- coding: utf-8 -*-
"""
flask.session
~~~~~~~~~~~~~
14 years ago
This module used to flask with the session global so we moved it
over to flask.sessions
14 years ago
:copyright: (c) 2011 by Armin Ronacher.
:license: BSD, see LICENSE for more details.
"""
14 years ago
from warnings import warn
warn(DeprecationWarning('please use flask.sessions instead'))
14 years ago
from .sessions import SecureCookieSession, NullSession
14 years ago
Session = SecureCookieSession
_NullSession = NullSession