Relative Content

Tag Archive for pythontyping

What does list[Never] means in Python?

from typing import Never def some_func() -> list[int] | list[Never]: … What does list[Never] means? Thanks in advance fellow users from the wonderful website stackoverflow, which obliges me to enter at least 220 characters. python typing