Browse Source

Removed deprecated and awkward flask.session module

pull/609/head
Armin Ronacher 12 years ago
parent
commit
5e88c8184d
  1. 3
      CHANGES
  2. 19
      flask/session.py

3
CHANGES

@ -20,6 +20,9 @@ Release date to be decided.
- Added wrapper module around simplejson and added default serialization - Added wrapper module around simplejson and added default serialization
of datetime objects. This allows much easier customization of how of datetime objects. This allows much easier customization of how
JSON is handled by Flask or any Flask extension. JSON is handled by Flask or any Flask extension.
- Removed deprecated internal ``flask.session`` module alias. Use
``flask.sessions`` instead to get the session module. This is not to
be confused with ``flask.session`` the session proxy.
Version 0.9 Version 0.9
----------- -----------

19
flask/session.py

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