Heejae Chang
Heejae Chang
related to https://github.com/microsoft/pylance-release/issues/3188
I can't repro this now. is this still an issue?
Can you provide us some logs as described in [the troubleshooting guide](https://github.com/microsoft/pylance-release/blob/main/TROUBLESHOOTING.md#filing-an-issue)? ... I used ubuntu + OpenSSH server 3.0.2 (on ubuntu) + vscode insider (1.74.0-insider) windows + OpenSSH 3.0.2...
I believe we already have warning for such case. we would need more detail to know why it didn't work in your case. the log I mentioned above would help...
from your log, I see this ``` [Error - 11:59:45 AM] (167185) Enumeration of workspace source files is taking longer than 10 seconds. This may be because: * You have...
closed issue since we confirmed it is due to file system walking. our walking perf is leaner to the size of files/folders given to us and os's file walking perf....
ah, I didn't mean it will show notification. I meant it will show up in the log which it did. currently, we don't have any notification on perf issues. instead,...
I think bug is in type eval. at line 4181 ```ts addDiagnostic( fileInfo.diagnosticRuleSet.reportUndefinedVariable, DiagnosticRule.reportUndefinedVariable, Localizer.Diagnostic.symbolIsUndefined().format({ name }), node ); ``` basically, when I took a look last time, for code...
For now, we will do just simple change. previously, we filtered out those types from `collection.abc` at deduplication pass since those are recognized as dup of ones from typing module....
https://sourceroslyn.io/#Microsoft.CodeAnalysis.Features/SolutionCrawler/WorkCoordinator.IncrementalAnalyzerProcessor.cs,263 this should call the body only analysis for open file?