mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
16 lines
470 B
Python
16 lines
470 B
Python
# Stubs for calendar
|
|
|
|
# NOTE: These are incomplete!
|
|
|
|
from typing import overload, Tuple
|
|
|
|
# TODO actually, any number of items larger than 5 is fine
|
|
@overload
|
|
def timegm(t: Tuple[int, int, int, int, int, int]) -> int: ...
|
|
@overload
|
|
def timegm(t: Tuple[int, int, int, int, int, int, int]) -> int: ...
|
|
@overload
|
|
def timegm(t: Tuple[int, int, int, int, int, int, int, int]) -> int: ...
|
|
@overload
|
|
def timegm(t: Tuple[int, int, int, int, int, int, int, int, int]) -> int: ...
|