summaryrefslogtreecommitdiffstats
path: root/contrib/python/python-dateutil/py3/dateutil/rrule.py
diff options
context:
space:
mode:
authorAlexander Smirnov <[email protected]>2024-03-18 09:45:29 +0000
committerAlexander Smirnov <[email protected]>2024-03-18 09:45:29 +0000
commit5ff3b38fce49645bcb7bc2f63cfc22475ead6c09 (patch)
tree81728bf248a00ec69169aed99ad92d3b7fb35e2f /contrib/python/python-dateutil/py3/dateutil/rrule.py
parentf714ab41ab9eff2692f35f7f003562d42b21f89c (diff)
parentd7c2d188d2464ce858465870a39220c4dfbb5509 (diff)
Merge branch 'rightlib' into mergelibs-240318-0944
Diffstat (limited to 'contrib/python/python-dateutil/py3/dateutil/rrule.py')
-rw-r--r--contrib/python/python-dateutil/py3/dateutil/rrule.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/python/python-dateutil/py3/dateutil/rrule.py b/contrib/python/python-dateutil/py3/dateutil/rrule.py
index b3203393c61..571a0d2bc88 100644
--- a/contrib/python/python-dateutil/py3/dateutil/rrule.py
+++ b/contrib/python/python-dateutil/py3/dateutil/rrule.py
@@ -182,7 +182,7 @@ class rrulebase(object):
# __len__() introduces a large performance penalty.
def count(self):
""" Returns the number of recurrences in this set. It will have go
- trough the whole recurrence, if this hasn't been done before. """
+ through the whole recurrence, if this hasn't been done before. """
if self._len is None:
for x in self:
pass