Exemplo n.º 1
0
 def __init__(self, col, order, min=0, max=None):
     Scheduler.__init__(self, col)
     # should be the opposite order of what you want
     self.order = order
     # days to limit cram to, where tomorrow=0. Max is inclusive.
     self.min = min
     self.max = max
     self.reset()