sphinx/tests/roots/test-ext-autodoc/target/properties.py

23 lines
407 B
Python

class Foo:
"""docstring"""
@property
def prop1(self) -> int:
"""docstring"""
@classmethod
@property
def prop2(self) -> int:
"""docstring"""
@property
def prop1_with_type_comment(self):
# type: () -> int
"""docstring"""
@classmethod
@property
def prop2_with_type_comment(self):
# type: () -> int
"""docstring"""