comparison DataTypes/NextTime.py @ 0:45b12307c695
Initial revision
author |
drewp |
date |
Wed, 03 Jul 2002 09:37:57 +0000 |
parents |
|
children |
|
comparison
equal
deleted
inserted
replaced
|
1 '''Baby, there won't be no next time''' |
|
2 |
|
3 class NextTime: |
|
4 def __init__(self, nextclock, interval=None) |
|
5 self.nextclock = nextclock |
|
6 self.interval = interval |
|
7 def cylic(self): |
|
8 return interval is not None |