mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-02-26 19:47:14 +08:00
Remove object as the only ancestor for classes in Python 3 stubs.
This commit is contained in:
committed by
Łukasz Langa
parent
efdf2f1b17
commit
4cd137189a
@@ -19,7 +19,7 @@ def leapdays(y1: int, y2: int) -> int: ...
|
||||
def weekday(year: int, month: int, day: int) -> int: ...
|
||||
def monthrange(year: int, month: int) -> Tuple[int, int]: ...
|
||||
|
||||
class Calendar(object):
|
||||
class Calendar:
|
||||
def __init__(self, firstweekday: int = 0) -> None: ...
|
||||
def getfirstweekday(self) -> int: ...
|
||||
def setfirstweekday(self, firstweekday: int) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user