You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a type annotation is added to the self parameter the special scope for self is missing.
Steps to reproduce:
Paste the following code into a *.py file and inspect the self parameter with the developer token inspect tool. Like in the screenshots above.
The self parameter of the bad_func should show the actual scopes and the self parameter of the good_func should show the expected scopes.
class Test:
def bad_func(self: Test):
pass
def good_func(self):
pass
The text was updated successfully, but these errors were encountered:
Got send here from 'vscode-python' microsoft/vscode-python#11593
Without type annotation everything is just fine.

When a type annotation is added to the

self
parameter the special scope forself
is missing.Steps to reproduce:
Paste the following code into a *.py file and inspect the
self
parameter with the developer token inspect tool. Like in the screenshots above.The
self
parameter of thebad_func
should show the actual scopes and theself
parameter of thegood_func
should show the expected scopes.The text was updated successfully, but these errors were encountered: