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
I am using the extension with Python 3.8.3. On hover for any built-in, the tooltip shows only the type information (of parameters, return value etc.).
However, I'd prefer it showing the documentation of the function (wherever available) as well, so that it is clear what the function is being used for. This can be seen demonstrated in the Pylance announcement blog post for the pandas library. I expect similar functionality to be available for built-ins, given that documentation for them is already accessible via help() or __doc__. In above images for str.strip(), the tooltips should display:
Return a copy of the string with leading and trailing whitespace removed.
If chars is given and not None, remove characters in chars instead.
The text was updated successfully, but these errors were encountered:
I am using the extension with Python 3.8.3. On hover for any built-in, the tooltip shows only the type information (of parameters, return value etc.).


However, I'd prefer it showing the documentation of the function (wherever available) as well, so that it is clear what the function is being used for. This can be seen demonstrated in the Pylance announcement blog post for the pandas library. I expect similar functionality to be available for built-ins, given that documentation for them is already accessible via help() or __doc__. In above images for str.strip(), the tooltips should display:
The text was updated successfully, but these errors were encountered: