Added documentation for "Never" internal type.

This commit is contained in:
Eric Traut 2019-05-23 16:16:37 -07:00
parent 6f17514a32
commit 4213dd9211

View File

@ -45,7 +45,6 @@ Pyright attempts to infer the types of global (module-level) variables, class va
Pyright supports type constraints (sometimes called “path constraints”) to track assumptions that apply within certain paths of code flow. For example, consider the following code:
```python
def (a: Optional[Union[str, List[str]]) -> None:
if isinstance(a, str):
log(a)
@ -57,4 +56,19 @@ def (a: Optional[Union[str, List[str]]) -> None:
In this example, the type checker knows that parameter a is either None, str, or List[str]. Within the first `if` clause, a is constrained to be a str. Within the `elif` clause, it is constrained to be a List[str], and within the `else` clause, it has to be None (by process of elimination). The type checker would therefore flag the final line as an error if the log method could not accept None as a parameter.
If the type constraint logic exhausts all possible subtypes, it can be assumed that a code path will never be taken. For example, consider the following:
```python
def (a: Union[Foo, Bar]) -> None:
if isinstance(a, Foo):
# a must be type Foo
a.do_something_1()
elif isinstance(a, Bar):
# a must be type Bar
a.do_something_2()
else:
# This code is unreachable
a.do_something_3()
```
In this case, the type of parameter “a” is initial “Union[Foo, Bar]”. Within the “if” clause, the type constraint logic will conclude that it must be of type “Foo”. Within the “elif” clause, it must be of type “Bar”. What type is it within the “else” clause? The type constraint system has eliminated all possible subtypes, so it gives it the type “Never”. This is generally indicates that theres a logic error in the code because theres way that code block will ever be executed.