~nchohan/+junk/mytools

« back to all changes in this revision

Viewing changes to sample_apps/sleep/sleep.py

  • Committer: root
  • Date: 2010-11-03 07:43:57 UTC
  • Revision ID: root@appscale-image0-20101103074357-xea7ja3sor3x93oc
init

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import time
 
2
starttime = time.time()
 
3
time.sleep(5)
 
4
endtime = time.time()
 
5
print "Content-Type: text/plain"
 
6
print ""
 
7
print "StartTime:",str(starttime)
 
8
print "EndTime:",str(endtime)