mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
23 lines
407 B
Python
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"""
|