Home | History | Annotate | Download | only in timeout
      1 #!/usr/bin/env python
      2 import os
      3 import time
      4 
      5 # Always returns an empty response body
      6 # and adds in the X-Method: header with the
      7 # method that was sent to the CGI
      8 time.sleep(3)
      9 
     10 print "Status: 200 Ok"
     11 print "Content-type: text/plain"
     12 print ""
     13 print "3 seconds later"
     14 
     15 
     16