Hmm, now that I think about it, we *can* use time.time() and 'date' if

running verbose.
This commit is contained in:
Barry Warsaw 1996-12-13 18:08:58 +00:00
parent 4eb01cd372
commit 4c23b5fdbc
1 changed files with 8 additions and 6 deletions

View File

@ -9,13 +9,15 @@
if __name__ == '__main__':
verbose = 1
now = 850499890.282 # time.time()
fromdate = 'Fri Dec 13 12:58:10 EST 1996' # os.popen('date')
if verbose:
now = time.time()
fp = os.popen('date')
fromdate = string.strip(fp.readline())
fp.close()
else:
now = 850499890.282 # time.time()
fromdate = 'Fri Dec 13 12:58:10 EST 1996' # os.popen('date')
## now = time.time()
## fp = os.popen('date')
## fromdate = string.strip(fp.readline())
## fp.close()
nowsecs = int(now)
gmt = time.gmtime(now)
now = time.localtime(now)