android13/external/python/httplib2/test/timeout/timeout.cgi

16 lines
269 B
Plaintext
Raw Normal View History

2024-06-22 08:45:49 -04:00
#!/usr/bin/env python
import os
import time
# Always returns an empty response body
# and adds in the X-Method: header with the
# method that was sent to the CGI
time.sleep(3)
print "Status: 200 Ok"
print "Content-type: text/plain"
print ""
print "3 seconds later"