| 683 | start_response("200 OK", [("Content-Type", "text/html")]) |
| 684 | |
| 685 | class Rv: |
| 686 | def __iter__(self): |
| 687 | yield "Hello " |
| 688 | yield "World" |
| 689 | yield "!" |
| 690 | |
| 691 | def close(self): |
| 692 | assert leaked_data.pop() == "harhar" |
| 693 | |
| 694 | return Rv() |
| 695 |
no outgoing calls