@@ -4031,7 +4031,7 @@ def test_keywords_syntax_raises_on_3_13(self):
40314031 with self .assertRaises (TypeError ), self .assertWarns (DeprecationWarning ):
40324032 TypedDict ('Emp' , name = str , id = int )
40334033
4034- @skipIf (sys .version_info >= (3 , 15 ), "3.15 removes support for kwargs" )
4034+ @skipIf (sys .version_info >= (3 , 13 ), "3.13 removes support for kwargs" )
40354035 def test_basics_keywords_syntax (self ):
40364036 with self .assertWarns (DeprecationWarning ):
40374037 Emp = TypedDict ('Emp' , name = str , id = int )
@@ -4048,7 +4048,7 @@ def test_basics_keywords_syntax(self):
40484048 self .assertEqual (Emp .__annotations__ , {'name' : str , 'id' : int })
40494049 self .assertEqual (Emp .__total__ , True )
40504050
4051- @skipIf (sys .version_info >= (3 , 15 ), "3.15 removes support for kwargs" )
4051+ @skipIf (sys .version_info >= (3 , 13 ), "3.13 removes support for kwargs" )
40524052 def test_typeddict_special_keyword_names (self ):
40534053 with self .assertWarns (DeprecationWarning ):
40544054 TD = TypedDict ("TD" , cls = type , self = object , typename = str , _typename = int ,
0 commit comments