コード例 #1
0
ファイル: test_typecheck2.py プロジェクト: lfrancioli/hail
 def f_frozenset_int(x: FrozenSet[int]):
     typecheck(f_frozenset_int)
コード例 #2
0
 def f_complicated(x: List[List[Set[Union[str, int]]]],
                   y: Dict[Union[int, str], Sequence[Optional[int]]]):
     typecheck(f_complicated)
コード例 #3
0
 def f_list_int(x: List[int]):
     typecheck(f_list_int)
コード例 #4
0
 def f_mapping_str_int(x: Mapping[str, int]):
     typecheck(f_mapping_str_int)
コード例 #5
0
 def f_optional(x: Optional[str]):
     typecheck(f_optional)
コード例 #6
0
 def f_tuple(x: Tuple):
     typecheck(f_tuple)
コード例 #7
0
 def f_tuple_sized2(x: Tuple[int, str, Union[str, int]]):
     typecheck(f_tuple_sized2)
コード例 #8
0
ファイル: test_typecheck2.py プロジェクト: lfrancioli/hail
 def f_tuple2(x: Tuple[Any, ...]):
     typecheck(f_tuple2)
コード例 #9
0
ファイル: test_typecheck2.py プロジェクト: lfrancioli/hail
 def f_tuple_var(x: Tuple[int, ...]):
     typecheck(f_tuple_var)
コード例 #10
0
ファイル: test_typecheck2.py プロジェクト: lfrancioli/hail
 def f_simple2(x: str):
     typecheck(f_simple2)
コード例 #11
0
ファイル: test_typecheck2.py プロジェクト: lfrancioli/hail
 def f_tuple(x: Tuple):
     typecheck(f_tuple)
コード例 #12
0
ファイル: test_typecheck2.py プロジェクト: lfrancioli/hail
 def f_collection_str(x: Collection[str]):
     typecheck(f_collection_str)
コード例 #13
0
ファイル: test_typecheck2.py プロジェクト: lfrancioli/hail
 def f_collection(x: Collection):
     typecheck(f_collection)
コード例 #14
0
ファイル: test_typecheck2.py プロジェクト: lfrancioli/hail
 def f_simple1(x: int):
     typecheck(f_simple1)
コード例 #15
0
 def f_frozenset_int(x: FrozenSet[int]):
     typecheck(f_frozenset_int)
コード例 #16
0
ファイル: test_typecheck2.py プロジェクト: lfrancioli/hail
 def f_tuple_sized1(x: Tuple[int]):
     typecheck(f_tuple_sized1)
コード例 #17
0
 def f_collection_str(x: Collection[str]):
     typecheck(f_collection_str)
コード例 #18
0
ファイル: test_typecheck2.py プロジェクト: lfrancioli/hail
 def f_tuple_sized2(x: Tuple[int, str, Union[str, int]]):
     typecheck(f_tuple_sized2)
コード例 #19
0
 def f_tuple_var(x: Tuple[int, ...]):
     typecheck(f_tuple_var)
コード例 #20
0
ファイル: test_typecheck2.py プロジェクト: lfrancioli/hail
 def f_dict(x: Dict):
     typecheck(f_dict)
コード例 #21
0
 def f_dict_str_int(x: Dict[str, int]):
     typecheck(f_dict_str_int)
コード例 #22
0
ファイル: test_typecheck2.py プロジェクト: lfrancioli/hail
 def f_dict_str_int(x: Dict[str, int]):
     typecheck(f_dict_str_int)
コード例 #23
0
 def f_varargs2(*xs: str):
     typecheck(f_varargs2)
コード例 #24
0
ファイル: test_typecheck2.py プロジェクト: lfrancioli/hail
 def f_mapping(x: Mapping):
     typecheck(f_mapping)
コード例 #25
0
 def f_kwargs2(x: int, **xs: List[Union[str, int]]):
     typecheck(f_kwargs2)
コード例 #26
0
ファイル: test_typecheck2.py プロジェクト: lfrancioli/hail
 def f_mapping_str_int(x: Mapping[str, int]):
     typecheck(f_mapping_str_int)
コード例 #27
0
 def f_union(x: Union[int, str]):
     typecheck(f_union)
コード例 #28
0
ファイル: test_typecheck2.py プロジェクト: lfrancioli/hail
 def f_varargs(x: int, *xs: str):
     typecheck(f_varargs)
コード例 #29
0
 def f_sequence(x: Sequence):
     typecheck(f_sequence)
コード例 #30
0
ファイル: test_typecheck2.py プロジェクト: lfrancioli/hail
 def f_varargs2(*xs: str):
     typecheck(f_varargs2)
コード例 #31
0
 def f_simple1(x: int):
     typecheck(f_simple1)
コード例 #32
0
ファイル: test_typecheck2.py プロジェクト: lfrancioli/hail
 def f_varargs3(x: int, *xs: Union[str, int]):
     typecheck(f_varargs3)
コード例 #33
0
 def f_collection(x: Collection):
     typecheck(f_collection)
コード例 #34
0
ファイル: test_typecheck2.py プロジェクト: lfrancioli/hail
 def f_kwargs(x: int, **xs: int):
     typecheck(f_kwargs)
コード例 #35
0
 def f_simple2(x: str):
     typecheck(f_simple2)
コード例 #36
0
ファイル: test_typecheck2.py プロジェクト: lfrancioli/hail
 def f_kwargs2(x: int, **xs: List[Union[str, int]]):
     typecheck(f_kwargs2)
コード例 #37
0
 def f_tuple2(x: Tuple[Any, ...]):
     typecheck(f_tuple2)
コード例 #38
0
ファイル: test_typecheck2.py プロジェクト: lfrancioli/hail
 def f_optional(x: Optional[str]):
     typecheck(f_optional)
コード例 #39
0
 def f_tuple_sized1(x: Tuple[int]):
     typecheck(f_tuple_sized1)
コード例 #40
0
ファイル: test_typecheck2.py プロジェクト: lfrancioli/hail
 def f_callable(x: Callable[[int, str], str]):
     typecheck(f_callable)
コード例 #41
0
 def f_dict(x: Dict):
     typecheck(f_dict)
コード例 #42
0
ファイル: test_typecheck2.py プロジェクト: lfrancioli/hail
 def f_complicated(x: List[List[Set[Union[str, int]]]],
                   y: Dict[Union[int, str], Sequence[Optional[int]]]):
     typecheck(f_complicated)
コード例 #43
0
 def f_mapping(x: Mapping):
     typecheck(f_mapping)
コード例 #44
0
ファイル: test_typecheck2.py プロジェクト: lfrancioli/hail
 def f_float(x: float):
     typecheck(f_float)
コード例 #45
0
 def f_varargs(x: int, *xs: str):
     typecheck(f_varargs)
コード例 #46
0
ファイル: test_typecheck2.py プロジェクト: lfrancioli/hail
 def f_union(x: Union[int, str]):
     typecheck(f_union)
コード例 #47
0
 def f_varargs3(x: int, *xs: Union[str, int]):
     typecheck(f_varargs3)
コード例 #48
0
ファイル: test_typecheck2.py プロジェクト: lfrancioli/hail
 def f_list(x: List):
     typecheck(f_list)
コード例 #49
0
 def f_kwargs(x: int, **xs: int):
     typecheck(f_kwargs)
コード例 #50
0
ファイル: test_typecheck2.py プロジェクト: lfrancioli/hail
 def f_list_int(x: List[int]):
     typecheck(f_list_int)
コード例 #51
0
 def f_callable(x: Callable[[int, str], str]):
     typecheck(f_callable)
コード例 #52
0
ファイル: test_typecheck2.py プロジェクト: lfrancioli/hail
 def f_sequence(x: Sequence):
     typecheck(f_sequence)
コード例 #53
0
 def f_float(x: float):
     typecheck(f_float)
コード例 #54
0
ファイル: test_typecheck2.py プロジェクト: lfrancioli/hail
 def f_noargs():
     typecheck(f_noargs)
コード例 #55
0
 def f_list(x: List):
     typecheck(f_list)
コード例 #56
0
ファイル: test_typecheck2.py プロジェクト: lfrancioli/hail
 def f_sequence_float(x: Sequence[float]):
     typecheck(f_sequence_float)
コード例 #57
0
 def f_noargs():
     typecheck(f_noargs)
コード例 #58
0
 def f_frozenset(x: FrozenSet):
     typecheck(f_frozenset)
コード例 #59
0
 def f_sequence_float(x: Sequence[float]):
     typecheck(f_sequence_float)
コード例 #60
0
ファイル: test_typecheck2.py プロジェクト: lfrancioli/hail
 def f_frozenset(x: FrozenSet):
     typecheck(f_frozenset)