bpo-46644: Fix test_typing test broken by GH-31151 due to a merge rac… · python/cpython@7517437 (original) (raw)

Skip to content

Provide feedback

Saved searches

Use saved searches to filter your results more quickly

Sign up

Commit 7517437

File tree

1 file changed

lines changed

1 file changed

lines changed

Original file line number Diff line number Diff line change
@@ -377,7 +377,7 @@ def test_bad_var_substitution(self):
377 377 T = TypeVar('T')
378 378 P = ParamSpec("P")
379 379 bad_args = (
380 -42, ..., [int], (), (int, str), Union,
380 + (), (int, str), Union,
381 381 Generic, Generic[T], Protocol, Protocol[T],
382 382 Final, Final[int], ClassVar, ClassVar[int],
383 383 )