typeshed是Pytho的librarystub的集合,用于为Pytho标准库和Pytho内建,以及第三方软件包。此数据可用于静态分析,类型检查和类型推断。
语法示例
MAXYEAR = ... # type: itMINYEAR = ... # type: it__doc__ = ... # type: str__file__ = ... # type: str__ame__ = ... # type: str__package__ = ... # type: Noeclass date(object): def __iit__(self, year: it, moth: it, day: it): ... @classmethod def fromtimestamp(cls, timestamp: it or float) -> date: ... @classmethod def fromordial(cls, ordial: it) -> date: ... @classmethod def today(self) -> date: ... def ctime(self) -> str: ... def weekday(self) -> it: ...
评论