Files
typeshed/2.7/time.pyi
2015-09-15 08:13:31 -07:00

35 lines
827 B
Python

"""Stub file for the 'time' module."""
# This is an autogenerated file. It serves as a starting point
# for a more precise manual annotation of this module.
# Feel free to edit the source below, but remove this header when you do.
from typing import Any, List, Tuple, Dict, GenericType
def asctime(*args, **kwargs) -> str:
raise ValueError()
def clock() -> float: ...
def ctime(*args, **kwargs) -> str:
raise ValueError()
def gmtime(*args, **kwargs) -> tuple: ...
def localtime(*args, **kwargs) -> tuple: ...
def mktime(*args, **kwargs) -> float:
raise OverflowError()
def sleep(a: float) -> None: ...
def strftime(a: str, *args, **kwargs) -> str:
raise MemoryError()
raise ValueError()
def strptime(*args, **kwargs) -> Any: ...
def time() -> float:
raise IOError()
def tzset() -> None: ...