You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
254 B
21 lines
254 B
2 years ago
|
#!/usr/bin/python
|
||
|
|
||
|
import cgi
|
||
|
import cgitb; cgitb.enable()
|
||
|
import os, sys, time
|
||
|
import string
|
||
|
|
||
|
dbg = []
|
||
|
|
||
|
def debug(dbgstr):
|
||
|
dbg.append("DBG: "+str(dbgstr))
|
||
|
|
||
|
time.sleep(5);
|
||
|
|
||
|
print """Content-Type: text/plain
|
||
|
Expires: 0
|
||
|
|
||
|
|
||
|
Done sleeping for 5 seconds.
|
||
|
"""
|