1
0
forked from VimPlug/jedi

Merge pull request #1572 from davidhalter/classvar

Remove is_class_value from infer_type_vars
This commit is contained in:
Dave Halter
2020-05-12 23:56:03 +02:00
committed by GitHub
8 changed files with 104 additions and 122 deletions

View File

@@ -10,6 +10,7 @@ from typing import (
Type,
TypeVar,
Union,
Sequence,
)
K = TypeVar('K')
@@ -165,6 +166,9 @@ some_str = NotImplemented # type: str
#? str()
first(some_str)
annotated = [len] # type: List[ Callable[[Sequence[float]], int] ]
#? int()
first(annotated)()
# Test that the right type is chosen when a partially realised mapping is expected
def values(mapping: Mapping[int, T]) -> List[T]: