4
4
import collections .abc as collections_abc
5
5
import sys
6
6
import typing
7
- from typing_extensions import Literal , TypedDict , Required , NotRequired
8
-
9
7
import pytest
10
8
11
9
from typing_validation import validate , validation_aliases
15
13
_is_typed_dict ,
16
14
)
17
15
16
+ if sys .version_info [1 ] >= 8 :
17
+ from typing import Literal
18
+ else :
19
+ from typing_extensions import Literal
20
+
21
+ if sys .version_info [1 ] >= 9 :
22
+ from typing import TypedDict
23
+ else :
24
+ from typing_extensions import TypedDict
25
+
18
26
if sys .version_info [1 ] >= 10 :
19
27
from types import UnionType
20
28
else :
21
29
UnionType = None
22
30
23
-
24
31
_basic_types = [
25
32
bool ,
26
33
int ,
@@ -521,17 +528,6 @@ class TD2(TypedDict, total=False):
521
528
x : str
522
529
w : typing .List [str ]
523
530
524
-
525
- class TD3 (TypedDict , total = False ):
526
- x : Required [str ]
527
- w : typing .List [str ]
528
-
529
-
530
- class TD4 (TypedDict ):
531
- x : str
532
- w : NotRequired [typing .List [str ]]
533
-
534
-
535
531
_typed_dict_cases : typing .Dict [typing .Any , typing .List [typing .Any ]] = {}
536
532
_typed_dict_cases [TD1b ] = [
537
533
{"x" : 1 , "y" : 1.5 , "z" : ["hello" , "bye bye" ]},
@@ -550,14 +546,27 @@ class TD4(TypedDict):
550
546
{"w" : ["hello" , "bye bye" ]},
551
547
{},
552
548
]
553
- _typed_dict_cases [TD3 ] = [
554
- {"x" : "hello" , "w" : ["hello" , "bye bye" ]},
555
- {"x" : "hello" },
556
- ]
557
- _typed_dict_cases [TD4 ] = [
558
- {"x" : "hello" , "w" : ["hello" , "bye bye" ]},
559
- {"x" : "hello" },
560
- ]
549
+
550
+ if sys .version_info [1 ] >= 11 :
551
+ from typing import Required , NotRequired
552
+
553
+ class TD3 (TypedDict , total = False ):
554
+ x : Required [str ] # pyright: ignore
555
+ w : typing .List [str ]
556
+
557
+
558
+ class TD4 (TypedDict ):
559
+ x : str
560
+ w : NotRequired [typing .List [str ]] # pyright: ignore
561
+
562
+ _typed_dict_cases [TD3 ] = [
563
+ {"x" : "hello" , "w" : ["hello" , "bye bye" ]},
564
+ {"x" : "hello" },
565
+ ]
566
+ _typed_dict_cases [TD4 ] = [
567
+ {"x" : "hello" , "w" : ["hello" , "bye bye" ]},
568
+ {"x" : "hello" },
569
+ ]
561
570
562
571
563
572
@pytest .mark .parametrize ("t, vals" , _typed_dict_cases .items ())
@@ -589,16 +598,20 @@ def test_typed_dict_cases(t: typing.Any, vals: typing.List[typing.Any]) -> None:
589
598
{"w" : 0 },
590
599
{"x" : 0 },
591
600
]
592
- _invalid_typed_dict_cases [TD3 ] = [
593
- * _invalid_typed_dict_cases [TD2 ],
594
- {"w" : ["hello" , "bye bye" ]},
595
- {},
596
- ]
597
- _invalid_typed_dict_cases [TD4 ] = [
598
- * _invalid_typed_dict_cases [TD2 ],
599
- {"w" : ["hello" , "bye bye" ]},
600
- {},
601
- ]
601
+
602
+
603
+ if sys .version_info [1 ] >= 11 :
604
+
605
+ _invalid_typed_dict_cases [TD3 ] = [
606
+ * _invalid_typed_dict_cases [TD2 ],
607
+ {"w" : ["hello" , "bye bye" ]},
608
+ {},
609
+ ]
610
+ _invalid_typed_dict_cases [TD4 ] = [
611
+ * _invalid_typed_dict_cases [TD2 ],
612
+ {"w" : ["hello" , "bye bye" ]},
613
+ {},
614
+ ]
602
615
603
616
604
617
@pytest .mark .parametrize ("t, vals" , _invalid_typed_dict_cases .items ())
0 commit comments