When we set count=0 in add_occurrences it freezes!
Apparently the issue is with python-dateutils, like for example,
list(rrule.rrule(rrule.DAILY, dtstart=datetime(2010,1,1,1), count=0))
will likely cause the problem ( generate an infinite list of occurrences)
What do you think we should do?
When we set
count=0inadd_occurrencesit freezes!Apparently the issue is with
python-dateutils, like for example,will likely cause the problem ( generate an infinite list of occurrences)
What do you think we should do?