Close the application and all installed plugins.
(self)
| 623 | self.hooks.trigger('app_reset') |
| 624 | |
| 625 | def close(self): |
| 626 | ''' Close the application and all installed plugins. ''' |
| 627 | for plugin in self.plugins: |
| 628 | if hasattr(plugin, 'close'): plugin.close() |
| 629 | self.stopped = True |
| 630 | |
| 631 | def match(self, environ): |
| 632 | """ Search for a matching route and return a (:class:`Route` , urlargs) |
no outgoing calls
no test coverage detected