We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When we set count=0 in add_occurrences it freezes!
count=0
add_occurrences
Apparently the issue is with python-dateutils, like for example,
python-dateutils
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?
The text was updated successfully, but these errors were encountered:
I've added a simple tweak to check for false-y values for count and until in the rrule params
count
until
rrule
Sorry, something went wrong.
No branches or pull requests
When we set
count=0
inadd_occurrences
it 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?
The text was updated successfully, but these errors were encountered: