mirror of
https://github.com/roytam1/mozilla45esr.git
synced 2026-05-27 13:38:43 +00:00
7 lines
177 B
Python
7 lines
177 B
Python
import time
|
|
|
|
def main(request, response):
|
|
delay = float(request.GET.first("ms", 500))
|
|
time.sleep(delay / 1E3);
|
|
return [("Content-type", "text/plain")], "TEST_DELAY"
|