Rename teardown example to avoid confusion.
This commit is contained in:
parent
2647bec408
commit
20bf8edcf4
1 changed files with 5 additions and 4 deletions
|
|
@ -174,13 +174,14 @@ It's easy to see the behavior from the command line:
|
|||
|
||||
>>> app = Flask(__name__)
|
||||
>>> @app.teardown_request
|
||||
... def after_request(exception=None):
|
||||
... print 'after request'
|
||||
...
|
||||
... def teardown_request(exception=None):
|
||||
... print 'this runs after request'
|
||||
...
|
||||
>>> ctx = app.test_request_context()
|
||||
>>> ctx.push()
|
||||
>>> ctx.pop()
|
||||
after request
|
||||
this runs after request
|
||||
>>>
|
||||
|
||||
.. _notes-on-proxies:
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue