tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

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''