Files
openide/python/testData/quickdoc/ExplicitCallableParameterListRendering.py
Mikhail Golubev 6626e2c98f PY-77538 Properly render PyCallableParameterListType in quick documentation
GitOrigin-RevId: d2444914d9df57dcf2c61ac1e16aefe9f577a929
2024-11-21 11:26:23 +00:00

5 lines
136 B
Python

class MyCallable[**P, R]:
def __call__(self, *args: P.args, **kwargs: P.kwargs):
ex<the_ref>pr: MyCallable[[int, str], bool]