We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 766522c commit 0dd9dc3Copy full SHA for 0dd9dc3
CHANGES
@@ -8,6 +8,10 @@ Version 0.8.1
8
9
Bugfix release, release date to be decided
10
11
+- Fixed an issue with the undocumented `flask.session` module to not
12
+ work properly on Python 2.5. It should not be used but did cause
13
+ some problems for package managers.
14
+
15
Version 0.8
16
-----------
17
flask/session.py
@@ -13,7 +13,7 @@
from warnings import warn
warn(DeprecationWarning('please use flask.sessions instead'))
-from .sessions import *
+from .sessions import SecureCookieSession, NullSession
18
Session = SecureCookieSession
19
_NullSession = NullSession
0 commit comments