mirror of
https://github.com/davidhalter/jedi.git
synced 2026-05-06 22:33:59 +08:00
Make sure the new generic syntax does not fail with latest parso
This commit is contained in:
@@ -436,3 +436,16 @@ res = 'f' in 'foo'; res
|
||||
|
||||
#? bool()
|
||||
res = not {}; res
|
||||
|
||||
# -----------------
|
||||
# new generic syntax should not fail
|
||||
# -----------------
|
||||
|
||||
class C[T]:
|
||||
def c(self) -> str: ...
|
||||
def f[T](x: T, y: T) -> int: ...
|
||||
|
||||
#? int()
|
||||
f()
|
||||
#? str()
|
||||
C().c()
|
||||
|
||||
Reference in New Issue
Block a user