mirror of
https://github.com/servo/servo.git
synced 2025-07-11 17:33:47 +01:00
6 lines
No EOL
113 B
Python
6 lines
No EOL
113 B
Python
import time
|
|
|
|
def main(request, response):
|
|
# Sleep for 3s to delay onload.
|
|
time.sleep(3)
|
|
return [], "" |