Document routing_args property

This commit is contained in:
Alessandro Molina 2016-02-10 00:02:58 +01:00
parent 3699ab0cab
commit e3c8d97ecf

@ -197,6 +197,13 @@ class DispatchState(object):
@property
def routing_args(self):
"""Parameters detected by the routing system.
This includes Request parameters and parameters extracted in other
ways (usually added through :meth:`.add_routing_args`). In case
of REST it will include intermediate arguments retrieved during dispatch
of parent controllers.
"""
return self._routing_args
def add_method(self, method, remainder):