Rename teardown example to avoid confusion.

This commit is contained in:
Ron DuPlain 2011-06-07 21:55:07 -04:00
parent 2647bec408
commit 20bf8edcf4
1 changed files with 5 additions and 4 deletions

View File

@ -174,13 +174,14 @@ It's easy to see the behavior from the command line:
>>> app = Flask(__name__) >>> app = Flask(__name__)
>>> @app.teardown_request >>> @app.teardown_request
... def after_request(exception=None): ... def teardown_request(exception=None):
... print 'after request' ... print 'this runs after request'
... ...
>>> ctx = app.test_request_context() >>> ctx = app.test_request_context()
>>> ctx.push() >>> ctx.push()
>>> ctx.pop() >>> ctx.pop()
after request this runs after request
>>>
.. _notes-on-proxies: .. _notes-on-proxies: