(response)
| 687 | |
| 688 | @app.after_request |
| 689 | def after_request(response): |
| 690 | response.data += b"|after" |
| 691 | evts.append("after") |
| 692 | return response |
| 693 | |
| 694 | @app.route("/") |
| 695 | def index(): |
nothing calls this directly
no outgoing calls
no test coverage detected