Files
openide/python/testData/quickdoc/ExplicitCallableParameterListRendering.py
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]