slow.py (248B)
1 # Like /common/slow.py except with text/html content-type so that it won't 2 # trigger strange parts of the <iframe> navigate algorithm. 3 import time 4 5 def main(request, response): 6 time.sleep(2) 7 return 200, [["Content-Type", "text/html"]], b''