(e)
| 963 | |
| 964 | @app.errorhandler(ForbiddenSubclass) |
| 965 | def handle_forbidden_subclass(e): |
| 966 | assert isinstance(e, ForbiddenSubclass) |
| 967 | return "banana" |
| 968 | |
| 969 | @app.errorhandler(403) |
| 970 | def handle_403(e): |
nothing calls this directly
no outgoing calls
no test coverage detected