Skip to content

Commit c6af00f

Browse files
Fix crash on multiple unpacks in a bare type application (#18857)
Fixes #18856. This should be done by `TypeAnalyzer.anal_array` but is not - semanal only invokes its own wrapper around `anal_type` --------- Co-authored-by: Ivan Levkivskyi <[email protected]>
1 parent 9e2198f commit c6af00f

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

mypy/semanal.py

+2
Original file line numberDiff line numberDiff line change
@@ -6071,6 +6071,8 @@ def analyze_type_application_args(self, expr: IndexExpr) -> list[Type] | None:
60716071
return None
60726072
types.append(analyzed)
60736073

6074+
if allow_unpack:
6075+
types = self.type_analyzer().check_unpacks_in_list(types)
60746076
if has_param_spec and num_args == 1 and types:
60756077
first_arg = get_proper_type(types[0])
60766078
single_any = len(types) == 1 and isinstance(first_arg, AnyType)

mypy/typeanal.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2006,7 +2006,7 @@ def check_unpacks_in_list(self, items: list[Type]) -> list[Type]:
20062006

20072007
if num_unpacks > 1:
20082008
assert final_unpack is not None
2009-
self.fail("More than one Unpack in a type is not allowed", final_unpack)
2009+
self.fail("More than one Unpack in a type is not allowed", final_unpack.type)
20102010
return new_items
20112011

20122012
def tuple_type(self, items: list[Type], line: int, column: int) -> TupleType:

test-data/unit/check-python312.test

+13
Original file line numberDiff line numberDiff line change
@@ -2029,3 +2029,16 @@ def foo() -> None:
20292029
class Z: ... # E: Name "Z" already defined on line 2
20302030
[builtins fixtures/tuple.pyi]
20312031
[typing fixtures/typing-full.pyi]
2032+
2033+
[case testPEP695MultipleUnpacksInBareApplicationNoCrash]
2034+
# https://github.com/python/mypy/issues/18856
2035+
class A[*Ts]: ...
2036+
2037+
A[*tuple[int, ...], *tuple[int, ...]] # E: More than one Unpack in a type is not allowed
2038+
a: A[*tuple[int, ...], *tuple[int, ...]] # E: More than one Unpack in a type is not allowed
2039+
def foo(a: A[*tuple[int, ...], *tuple[int, ...]]): ... # E: More than one Unpack in a type is not allowed
2040+
2041+
tuple[*tuple[int, ...], *tuple[int, ...]] # E: More than one Unpack in a type is not allowed
2042+
b: tuple[*tuple[int, ...], *tuple[int, ...]] # E: More than one Unpack in a type is not allowed
2043+
[builtins fixtures/tuple.pyi]
2044+
[typing fixtures/typing-full.pyi]

0 commit comments

Comments
 (0)