(self)
| 544 | return app.handle_with_processors() |
| 545 | |
| 546 | def get_parent_app(self): |
| 547 | if self in web.ctx.app_stack: |
| 548 | index = web.ctx.app_stack.index(self) |
| 549 | if index > 0: |
| 550 | return web.ctx.app_stack[index - 1] |
| 551 | |
| 552 | def notfound(self): |
| 553 | """Returns HTTPError with '404 not found' message""" |
no outgoing calls
no test coverage detected