mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-23 12:51:06 +00:00
317bc33be3
Differential Revision: https://phabricator.services.mozilla.com/D177802
10 lines
209 B
Python
10 lines
209 B
Python
class VersionInfo:
|
|
@property
|
|
def year(self) -> int: ...
|
|
@property
|
|
def minor(self) -> int: ...
|
|
@property
|
|
def micro(self) -> int: ...
|
|
@property
|
|
def releaselevel(self) -> str: ...
|