Files
CouchPotatoServer/libs/flask/session.py
T
2011-08-24 20:59:59 +02:00

20 lines
431 B
Python

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