<HTML><HEAD>
<META charset=US-ASCII http-equiv=Content-Type content="text/html; charset=US-ASCII">
<META content="MSHTML 6.00.2600.0" name=GENERATOR></HEAD>
<BODY style="FONT-SIZE: 10pt; FONT-FAMILY: Arial; BACKGROUND-COLOR: #ffffff">
<DIV>I am playing with the Time Module, and was attempt to write a script which would tell me when a specific time was reached.</DIV>
<DIV> </DIV>
<DIV>I am using the integer number of seconds since the epoch. This is what I have:</DIV>
<DIV> </DIV>
<DIV>def test():<BR> now = 1086017720.0<BR> current = time.time()<BR> print current<BR> while now<>current:<BR> current = time.time()<BR> print current<BR> print "now is acheived!"</DIV>
<DIV> </DIV>
<DIV>The problem is the count continues past the specific time.</DIV>
<DIV> </DIV>
<DIV>Thanks,</DIV>
<DIV>MB</DIV></BODY></HTML>