Files
openide/python/testData/completion/onSelfInsideClassFunction.py
andrey.matveev cad1138e59 PY-53104 Support PEP 673 typing.Self type
GitOrigin-RevId: 8efc65725580510dc3e9a93e1242e1a69032c8f1
2022-10-19 09:45:15 +00:00

9 lines
147 B
Python

from typing import Self
class HasNestedFunction:
x: int = 42
def foo(self, inner_self: Self) -> None:
print(inner_self.<caret>)