◐ Shell
clean mode source ↗

gh-91162: Support substitution of TypeVar with an unpacked variable-size tuple by serhiy-storchaka · Pull Request #93330 · python/cpython

…able-size tuple

For example:

  A[T, *Ts][*tuple[int, ...]] -> A[int, *tuple[int, ...]]
  A[*Ts, T][*tuple[int, ...]] -> A[*tuple[int, ...], int]

@serhiy-storchaka serhiy-storchaka changed the title gh-91162: Support substitution of TypeVar with an unpacked variable-size tuple [WIP] gh-91162: Support substitution of TypeVar with an unpacked variable-size tuple

May 29, 2022

@serhiy-storchaka serhiy-storchaka changed the title [WIP] gh-91162: Support substitution of TypeVar with an unpacked variable-size tuple gh-91162: Support substitution of TypeVar with an unpacked variable-size tuple

May 29, 2022

@serhiy-storchaka

This was referenced

May 30, 2022

@JelleZijlstra

JelleZijlstra

… into typing-subst-unpacked-vat-tuple