Merge pull request #255 from iamaspacecow/typeshed_calendar_fixes

Update calendar.pyi `timegm` to accept arbitrary length tuples
This commit is contained in:
David Fisher
2016-06-03 17:47:52 -07:00
2 changed files with 2 additions and 2 deletions

View File

@@ -72,4 +72,4 @@ c = ... # type: TextCalendar
def setfirstweekday(firstweekday: int) -> None: ...
def format(cols: int, colwidth: int = ..., spacing: int = ...) -> str: ...
def formatstring(cols: int, colwidth: int = ..., spacing: int = ...) -> str: ...
def timegm(tuple: Tuple[int]) -> int: ...
def timegm(tuple: Tuple[int, ...]) -> int: ...