Stella

Results 17 issues of Stella

fixes https://github.com/microsoft/PTVS/issues/7043 The VS testing team has recently changed test discovery such that on machines with multiple CPU cores, it can discover tests from different `sources` in parallel inside different...

fixes https://github.com/microsoft/PTVS/issues/7043 The VS testing team has recently changed test discovery such that on machines with multiple CPU cores, it can discover tests from different sources in parallel inside different...

## Code Snippet ```python class Base: def method(self): pass class Derived(Base): def method(self): return super().method() class Derived2(Base): def method(self): return super().method() class Derived3(Derived, Derived2): def method(self): return super().method() c =...

## Code Snippet ```python x = 1 ``` ## Repro Steps 1. Select `x = 1` and do "extract variable" ## Expected behavior Extract variable code action shouldn't show up....

bug

**Goal:** Create vsix that uses the latest prerelease Pylance bits for CTI's non-sign off testing. **Implementation:** Set up some configurable build options that can pull pylance from the internal feed...

engineering

Perform various actions and document features that are broken for python 3.12 ### General Editing - [x] Create a new python project, run code to see IntelliSense - [x] Run...

enhancement
on hold

This was original opened by Rich. See https://github.com/microsoft/pyrx/issues/3466 Visual Studio has a number of additions to the LSP. Unfortunately they're not documented yet. You can find them all by searching...

enhancement
P2

fixes https://github.com/microsoft/PTVS/issues/7775 Tested all the checked features in the above issue and made sure all of them work as expected.

## Environment data - Language Server version:2024.4.1 ## Code Snippet ```python # file1.py class Parent: def method(self) -> str: pass ``` ```python # file2.py from sys import version from file1...

bug

## Repro Steps 1. Open a folder in VSCode that contains both python files and notebooks, with the kernel of the notebooks set to a different Python interpreter than the...

bug