(e)
| 968 | |
| 969 | @app.errorhandler(403) |
| 970 | def handle_403(e): |
| 971 | assert not isinstance(e, ForbiddenSubclass) |
| 972 | assert isinstance(e, Forbidden) |
| 973 | return "apple" |
| 974 | |
| 975 | @app.route("/1") |
| 976 | def index1(): |
nothing calls this directly
no outgoing calls
no test coverage detected