1#!/usr/bin/env python
2import os
3import 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
8time.sleep(3)
9
10print "Status: 200 Ok"
11print "Content-type: text/plain"
12print ""
13print "3 seconds later"
14
15
16