Add subclassing pattern/example to fix issue #221.

This commit is contained in:
Anton Sarukhanov 2016-06-02 14:14:56 -07:00
parent 41f3d67dff
commit 63b5dab0fc
3 changed files with 24 additions and 1 deletions

View file

@ -35,7 +35,7 @@ Subclass.
The :class:`~flask.Flask` class has many methods designed for subclassing. You
can quickly add or customize behavior by subclassing :class:`~flask.Flask` (see
the linked method docs) and using that subclass wherever you instantiate an
application class. This works well with :ref:`app-factories`.
application class. This works well with :ref:`app-factories`. See :doc:`/patterns/subclassing` for an example.
Wrap with middleware.
---------------------