Files
typeshed/2.7/time.pyi
2015-09-15 07:58:50 -07:00

35 lines
836 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 List, Tuple, Dict, Undefined, 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) -> object: ...
def time() -> float:
raise IOError()
def tzset() -> None: ...