mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
16 lines
273 B
Python
16 lines
273 B
Python
from typing import Any
|
|
|
|
def my_func() -> Any:
|
|
return object()
|
|
|
|
s = my_func()
|
|
s.<the_ref>documented_method()
|
|
|
|
from openstack import proxy
|
|
class Proxy(proxy.Proxy):
|
|
def documented_method(self):
|
|
"""
|
|
method documentation
|
|
"""
|
|
return None
|