mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 14:04:26 +08:00
Fix an issue with a type var lookups
This commit is contained in:
@@ -305,3 +305,16 @@ from typing import Union as U
|
||||
def union4(x: U[int, str]):
|
||||
#? int() str()
|
||||
x
|
||||
|
||||
|
||||
TYPE_VAR = typing.TypeVar('TYPE_VAR')
|
||||
|
||||
|
||||
class WithTypeVar(typing.Generic[TYPE_VAR]):
|
||||
def lala(self) -> TYPE_VAR:
|
||||
...
|
||||
|
||||
|
||||
def maaan(p: WithTypeVar[int]):
|
||||
#? int()
|
||||
p.lala()
|
||||
|
||||
Reference in New Issue
Block a user