The route callback with all plugins applied. This property is created on demand and then cached to speed up subsequent requests.
(self)
| 465 | |
| 466 | @cached_property |
| 467 | def call(self): |
| 468 | ''' The route callback with all plugins applied. This property is |
| 469 | created on demand and then cached to speed up subsequent requests.''' |
| 470 | return self._make_callback() |
| 471 | |
| 472 | def reset(self): |
| 473 | ''' Forget any cached values. The next time :attr:`call` is accessed, |
no test coverage detected