1primes input.py /^primes: List[int] = []$/;" v typeref:typename:List[int] 2some_list input.py /^some_list: List[int] = [] # variable with initial value$/;" v typeref:typename:List[int] 3sane_world input.py /^ sane_world = True$/;" v 4t input.py /^t: Tuple[int, ...] = (1, 2, 3)$/;" v typeref:typename:Tuple[int, ...] 5header input.py /^header, kind, body = message$/;" v 6kind input.py /^header, kind, body = message$/;" v 7body input.py /^header, kind, body = message$/;" v 8BasicStarship input.py /^class BasicStarship:$/;" c 9captain input.py /^ captain: str = 'Picard' # instance variable with default$/;" v class:BasicStarship typeref:typename:str 10stats input.py /^ stats: ClassVar[Dict[str, int]] = {} # class variable$/;" v class:BasicStarship typeref:typename:ClassVar[Dict[str, int]] 11Starship input.py /^class Starship:$/;" c 12captain input.py /^ captain: str = 'Picard'$/;" v class:Starship typeref:typename:str 13stats input.py /^ stats: ClassVar[Dict[str, int]] = {}$/;" v class:Starship typeref:typename:ClassVar[Dict[str, int]] 14__init__ input.py /^ def __init__(self, damage: int, captain: str = None):$/;" m class:Starship 15hit input.py /^ def hit(self):$/;" m class:Starship 16enterprise_d input.py /^enterprise_d = Starship(3000)$/;" v 17Cls input.py /^class Cls:$/;" c 18c input.py /^c = Cls()$/;" v 19d input.py /^d = {}$/;" v 20qualified input.py /^qualified: typing.Any = 'anything'$/;" v typeref:typename:typing.Any 21