Files
openide/python/testData/quickdoc/ImplicitResolve.py
Andrey Vokin 4258a66920 PY-77171 Fails to render quick documentation
GitOrigin-RevId: 02ff0d9d9b08ffc4cac1344cf50b98d57aef920b
2025-04-14 20:59:29 +00:00

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