Browse Source

We should now have the same public API as before

pull/112/head
Armin Ronacher 14 years ago
parent
commit
88d9315d19
  1. 2
      CHANGES
  2. 2
      flask/__init__.py

2
CHANGES

@ -15,6 +15,8 @@ Codename to be decided, release date to be announced.
is only active for ``.html``, ``.htm``, ``.xml`` and ``.xhtml``. is only active for ``.html``, ``.htm``, ``.xml`` and ``.xhtml``.
Inside templates this behaviour can be changed with the Inside templates this behaviour can be changed with the
``autoescape`` tag. ``autoescape`` tag.
- refactored Flask internally. It now consists of more than a
single file.
Version 0.4 Version 0.4
----------- -----------

2
flask/__init__.py

@ -15,7 +15,7 @@
from werkzeug import abort, redirect from werkzeug import abort, redirect
from jinja2 import Markup, escape from jinja2 import Markup, escape
from flask.app import Flask from flask.app import Flask, Request, Response
from flask.config import Config from flask.config import Config
from flask.helpers import url_for, jsonify, json_available, flash, send_file, \ from flask.helpers import url_for, jsonify, json_available, flash, send_file, \
get_flashed_messages, render_template, render_template, render_template_string, \ get_flashed_messages, render_template, render_template, render_template_string, \

Loading…
Cancel
Save