[croniter] Update to 2.0.3 (#11631)

This commit is contained in:
Sebastian Rittau
2024-03-20 08:31:52 +01:00
committed by GitHub
parent 3f2ff5b257
commit b67804ab6d

View File

@@ -106,6 +106,10 @@ class croniter(Iterator[Any]):
def is_valid(cls, expression: str, hash_id: bytes | None = None) -> bool: ...
@classmethod
def match(cls, cron_expression: str, testdate: float | datetime.datetime | None, day_or: bool = True) -> bool: ...
@classmethod
def match_range(
cls, cron_expression: str, from_datetime: datetime.datetime, to_datetime: datetime.datetime, day_or: bool = True
) -> bool: ...
def croniter_range(
start: float | datetime.datetime,