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, \