docs: `with, for, self`

This commit is contained in:
defuz 2014-11-05 07:39:54 +03:00
parent 0bb4de1e3b
commit 663802e976
10 changed files with 24 additions and 24 deletions

View file

@ -45,7 +45,7 @@ us a :class:`~flask.ctx.RequestContext`:
>>> ctx = app.test_request_context()
Normally you would use the `with` statement to make this request object
Normally you would use the ``with`` statement to make this request object
active, but in the shell it's easier to use the
:meth:`~flask.ctx.RequestContext.push` and
:meth:`~flask.ctx.RequestContext.pop` methods by hand: