Heejae Chang
Heejae Chang
interesting... what I remember is in proc diagnostic analyzer uses method body (since in proc handles open file case) and out of proc doesn't care about method body (since it...
I think our current approach of printType actually returning hard coded format of string representation of the type is okay but more flexible way to do it would be it...
looking at it.
I just let `import alias` from `user file` show up in `add/auto import` when `indexing is off` since we don't do `import alias` deduplication when `indexing is off` (indexing is...
@last-partizan as I wrote [here](https://github.com/microsoft/pylance-release/issues/4065#issuecomment-1482010087), that behavior is only enabled when `python.analysis.indexing: false`. in pyright, it is always off.
please, remember with `indexing off`, all import alias in all user files will show up. in another words, if you have ```python # file1 def Book(): pass # file2 from...
@last-partizan as I said in the comment (https://github.com/microsoft/pylance-release/issues/4065#issuecomment-1482010087), change is only for when `indexing` is `off`. there is no change when `indexing` is `on`. our existing behavior when `indexing` is...
@last-partizan we got push back from people who didn't like the new behavior. so for now, we just reverted the change. we probably need more time to think about how...
@BuckAMayzing sure, we can do that. but we will gather more user feedback before we try to address it again. By the way, the previous fix we reverted was the...
@last-partizan so, we already show `import alias` from third party as you showed in your example `django`, what we don't do is not doing so if it is from user...