This method is being swapped out by the async implementation.
(self, arguments, autoescape)
| 575 | return self._invoke(arguments, autoescape) |
| 576 | |
| 577 | def _invoke(self, arguments, autoescape): |
| 578 | """This method is being swapped out by the async implementation.""" |
| 579 | rv = self._func(*arguments) |
| 580 | if autoescape: |
| 581 | rv = Markup(rv) |
| 582 | return rv |
| 583 | |
| 584 | def __repr__(self): |
| 585 | return '<%s %s>' % ( |