From 88d9315d1955ea4ee99f53e21593a0d1d9047ed0 Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Sun, 4 Jul 2010 11:37:39 +0200 Subject: [PATCH] We should now have the same public API as before --- CHANGES | 2 ++ flask/__init__.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 7336c377..795c2eb8 100644 --- a/CHANGES +++ b/CHANGES @@ -15,6 +15,8 @@ Codename to be decided, release date to be announced. is only active for ``.html``, ``.htm``, ``.xml`` and ``.xhtml``. Inside templates this behaviour can be changed with the ``autoescape`` tag. +- refactored Flask internally. It now consists of more than a + single file. Version 0.4 ----------- diff --git a/flask/__init__.py b/flask/__init__.py index 8cfe7fca..85c8dd3f 100644 --- a/flask/__init__.py +++ b/flask/__init__.py @@ -15,7 +15,7 @@ from werkzeug import abort, redirect from jinja2 import Markup, escape -from flask.app import Flask +from flask.app import Flask, Request, Response from flask.config import Config from flask.helpers import url_for, jsonify, json_available, flash, send_file, \ get_flashed_messages, render_template, render_template, render_template_string, \