Delete many redundant method redefinitions (#6877)

This commit is contained in:
Alex Waygood
2022-01-09 19:21:03 +00:00
committed by GitHub
parent bb6a6e3421
commit 4e046163b5
26 changed files with 0 additions and 50 deletions

View File

@@ -35,11 +35,9 @@ _LocaleType = tuple[Optional[str], Optional[str]]
class IllegalMonthError(ValueError):
def __init__(self, month: int) -> None: ...
def __str__(self) -> str: ...
class IllegalWeekdayError(ValueError):
def __init__(self, weekday: int) -> None: ...
def __str__(self) -> str: ...
def isleap(year: int) -> bool: ...
def leapdays(y1: int, y2: int) -> int: ...