Notable changes:
- The mapping of stub files to source files has been greatly improved. Go-to-definition and doc strings should now work for a much wider range of code.
(pylance-release#809, pylance-release#949) - Index expression type narrowing is now supported. For example, a check like
if some_tuple[1] is not None
will cause future uses ofsome_tuple[1]
to not beNone
, without needing to narrow a temporary variable. - Auto-import completion performance has been improved.
- Pylance's copy of typeshed has been updated.
For the full changelog, see CHANGELOG.md.