summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorfabrizio ettore messina <fabrizio.messina@mistralpay.com>2015-08-11 13:35:50 +0200
committerTim Graham <timograham@gmail.com>2015-09-18 19:04:29 -0400
commit186eb21dc159807dba83148f7c9c50d470745708 (patch)
treeb906d98d94bde119bef7ee542cb842e91f1c51ab /docs/ref
parentd8d853378b3ff75c03d8bd91ea026d2b8c642b0f (diff)
Fixed #25269 -- Allowed method_decorator() to accept a list/tuple of decorators.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/utils.txt14
1 files changed, 11 insertions, 3 deletions
diff --git a/docs/ref/utils.txt b/docs/ref/utils.txt
index c1df458872..c24551b9ec 100644
--- a/docs/ref/utils.txt
+++ b/docs/ref/utils.txt
@@ -155,12 +155,20 @@ The functions defined in this module share the following properties:
Converts a function decorator into a method decorator. It can be used to
decorate methods or classes; in the latter case, ``name`` is the name
- of the method to be decorated and is required. See :ref:`decorating
- class-based views<decorating-class-based-views>` for example usage.
+ of the method to be decorated and is required.
+
+ ``decorator`` may also be a a list or tuple of functions. They are wrapped
+ in reverse order so that the call order is the order in which the functions
+ appear in the list/tuple.
+
+ See :ref:`decorating class based views <decorating-class-based-views>` for
+ example usage.
.. versionchanged:: 1.9
- The ability to decorate classes and the ``name`` parameter were added.
+ The ability to decorate classes, the ``name`` parameter, and the ability
+ for ``decorator`` to accept a list/tuple of decorator functions were
+ added.
.. function:: decorator_from_middleware(middleware_class)