##// END OF EJS Templates
interfaces: change a couple of dirstate fields to `@property`...
interfaces: change a couple of dirstate fields to `@property` As I was adding type hints here and to the concrete classes, PyCharm flagged the property in the core class as not being compatible with the base class's version.

File last commit:

r50538:e1c586b9 default
r52821:3688a984 default
Show More
_version_info.pyi
9 lines | 209 B | text/x-python | PythonLexer
Matt Harbison
attr: vendor 22.1.0...
r50538 class VersionInfo:
@property
def year(self) -> int: ...
@property
def minor(self) -> int: ...
@property
def micro(self) -> int: ...
@property
def releaselevel(self) -> str: ...