10 lines
209 B
Python
Raw Normal View History

2020-12-19 19:08:09 -05:00
class VersionInfo:
@property
def year(self) -> int: ...
@property
def minor(self) -> int: ...
@property
def micro(self) -> int: ...
@property
def releaselevel(self) -> str: ...