()
| 1123 | |
| 1124 | @app.route("/full_tuple") |
| 1125 | def from_full_tuple(): |
| 1126 | return ( |
| 1127 | "Meh", |
| 1128 | 400, |
| 1129 | {"X-Foo": "Testing", "Content-Type": "text/plain; charset=utf-8"}, |
| 1130 | ) |
| 1131 | |
| 1132 | @app.route("/text_headers") |
| 1133 | def from_text_headers(): |
nothing calls this directly
no outgoing calls
no test coverage detected