MCPcopy
hub / github.com/pallets/werkzeug / yielding_app

Function yielding_app

tests/test_test.py:670–673  ·  view source on GitHub ↗
(environ, start_response)

Source from the content-addressed store, hash-verified

668 return ["Hello World!"]
669
670 def yielding_app(environ, start_response):
671 start_response("200 OK", [("Content-Type", "text/html")])
672 yield "Hello "
673 yield "World!"
674
675 def late_start_response(environ, start_response):
676 yield "Hello "

Callers

nothing calls this directly

Calls 1

start_responseFunction · 0.85

Tested by

no test coverage detected