mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-01-06 11:09:57 -08:00
c1b8be0227
* Bump arrow from 1.2.3 to 1.3.0 Bumps [arrow](https://github.com/arrow-py/arrow) from 1.2.3 to 1.3.0. - [Release notes](https://github.com/arrow-py/arrow/releases) - [Changelog](https://github.com/arrow-py/arrow/blob/master/CHANGELOG.rst) - [Commits](https://github.com/arrow-py/arrow/compare/1.2.3...1.3.0) --- updated-dependencies: - dependency-name: arrow dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Update arrow==1.3.0 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> [skip ci]
98 lines
2.9 KiB
Python
98 lines
2.9 KiB
Python
from datetime import date, timedelta
|
|
from typing import SupportsFloat, TypeVar, overload
|
|
from typing_extensions import Self, TypeAlias
|
|
|
|
# See #9817 for why we reexport this here
|
|
from ._common import weekday as weekday
|
|
|
|
_DateT = TypeVar("_DateT", bound=date)
|
|
# Work around attribute and type having the same name.
|
|
_Weekday: TypeAlias = weekday
|
|
|
|
MO: weekday
|
|
TU: weekday
|
|
WE: weekday
|
|
TH: weekday
|
|
FR: weekday
|
|
SA: weekday
|
|
SU: weekday
|
|
|
|
class relativedelta:
|
|
years: int
|
|
months: int
|
|
days: int
|
|
leapdays: int
|
|
hours: int
|
|
minutes: int
|
|
seconds: int
|
|
microseconds: int
|
|
year: int | None
|
|
month: int | None
|
|
weekday: _Weekday | None
|
|
day: int | None
|
|
hour: int | None
|
|
minute: int | None
|
|
second: int | None
|
|
microsecond: int | None
|
|
def __init__(
|
|
self,
|
|
dt1: date | None = None,
|
|
dt2: date | None = None,
|
|
years: int | None = 0,
|
|
months: int | None = 0,
|
|
days: int | None = 0,
|
|
leapdays: int | None = 0,
|
|
weeks: int | None = 0,
|
|
hours: int | None = 0,
|
|
minutes: int | None = 0,
|
|
seconds: int | None = 0,
|
|
microseconds: int | None = 0,
|
|
year: int | None = None,
|
|
month: int | None = None,
|
|
day: int | None = None,
|
|
weekday: int | _Weekday | None = None,
|
|
yearday: int | None = None,
|
|
nlyearday: int | None = None,
|
|
hour: int | None = None,
|
|
minute: int | None = None,
|
|
second: int | None = None,
|
|
microsecond: int | None = None,
|
|
) -> None: ...
|
|
@property
|
|
def weeks(self) -> int: ...
|
|
@weeks.setter
|
|
def weeks(self, value: int) -> None: ...
|
|
def normalized(self) -> Self: ...
|
|
# TODO: use Union when mypy will handle it properly in overloaded operator
|
|
# methods (#2129, #1442, #1264 in mypy)
|
|
@overload
|
|
def __add__(self, other: relativedelta) -> Self: ...
|
|
@overload
|
|
def __add__(self, other: timedelta) -> Self: ...
|
|
@overload
|
|
def __add__(self, other: _DateT) -> _DateT: ...
|
|
@overload
|
|
def __radd__(self, other: relativedelta) -> Self: ...
|
|
@overload
|
|
def __radd__(self, other: timedelta) -> Self: ...
|
|
@overload
|
|
def __radd__(self, other: _DateT) -> _DateT: ...
|
|
@overload
|
|
def __rsub__(self, other: relativedelta) -> Self: ...
|
|
@overload
|
|
def __rsub__(self, other: timedelta) -> Self: ...
|
|
@overload
|
|
def __rsub__(self, other: _DateT) -> _DateT: ...
|
|
def __sub__(self, other: relativedelta) -> Self: ...
|
|
def __neg__(self) -> Self: ...
|
|
def __bool__(self) -> bool: ...
|
|
def __nonzero__(self) -> bool: ...
|
|
def __mul__(self, other: SupportsFloat) -> Self: ...
|
|
def __rmul__(self, other: SupportsFloat) -> Self: ...
|
|
def __eq__(self, other: object) -> bool: ...
|
|
def __ne__(self, other: object) -> bool: ...
|
|
def __div__(self, other: SupportsFloat) -> Self: ...
|
|
def __truediv__(self, other: SupportsFloat) -> Self: ...
|
|
def __abs__(self) -> Self: ...
|
|
def __hash__(self) -> int: ...
|