pylyzer/tests/pyi.pyi
2024-10-06 18:46:19 +09:00

13 lines
197 B
Python

import typing
x: typing.Any
def f(x: int, y: int) -> int: ...
class C:
x: int
y: int
def __init__(self, x: int): ...
def f(self, x: int) -> int: ...
def g[T: C](x: T) -> T: ...