@@ -160,7 +160,7 @@ def check(self, method, expected_as_str, expected_as_str_source_version=None, up
160160 if update_try_except_infos is not None :
161161 update_try_except_infos (try_except_infos )
162162
163- if sys .version_info [:2 ] not in ((3 , 10 ), (3 , 11 ), (3 , 12 ), (3 , 13 )):
163+ if sys .version_info [:2 ] not in ((3 , 10 ), (3 , 11 ), (3 , 12 ), (3 , 13 ), ( 3 , 14 ) ):
164164 assert str (try_except_infos ) == expected_as_str
165165 from _pydevd_bundle .pydevd_collect_bytecode_info import collect_try_except_info_from_source
166166
@@ -192,7 +192,7 @@ def test_collect_try_except_info(data_regression, pyfile):
192192 info = collect_try_except_info (method .__code__ , use_func_first_line = True )
193193 method_to_info [key ] = sorted (str (x ) for x in info )
194194
195- if sys .version_info [:2 ] not in ((3 , 10 ), (3 , 11 ), (3 , 12 ), (3 , 13 )):
195+ if sys .version_info [:2 ] not in ((3 , 10 ), (3 , 11 ), (3 , 12 ), (3 , 13 ), ( 3 , 14 ) ):
196196 data_regression .check (method_to_info )
197197
198198 data_regression .check (method_to_info_from_source )
0 commit comments