From 27d28dcef4cee8765dcd7a567689d35a41ddcd75 Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Sun, 18 Jul 2010 20:43:50 +0200 Subject: [PATCH] Added Session again to the public API because existing code might import it --- flask/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/flask/__init__.py b/flask/__init__.py index 95497069..ee8508bc 100644 --- a/flask/__init__.py +++ b/flask/__init__.py @@ -23,6 +23,7 @@ from .helpers import url_for, jsonify, json_available, flash, \ from .globals import current_app, g, request, session, _request_ctx_stack from .module import Module from .templating import render_template, render_template_string +from .session import Session # the signals from .signals import signals_available, template_rendered, request_started, \