Files
django-stubs/django/utils/timesince.pyi
2018-07-29 18:27:46 +03:00

13 lines
273 B
Python

from datetime import date
from typing import Optional
def timesince(
d: date,
now: Optional[date] = ...,
reversed: bool = ...,
time_strings: None = ...
) -> str: ...
def timeuntil(d: date, now: Optional[date] = ..., time_strings: None = ...) -> str: ...