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
{{ message }}
This repository was archived by the owner on Apr 14, 2022. It is now read-only.
Extension version (available under the Extensions sidebar): 2018.6.0
OS and version: Ubuntu 16.04
Python version (& distribution if applicable, e.g. Anaconda): Anaconda, 3.6.6
Type of virtual environment used (N/A | venv | virtualenv | conda | ...): conda
Relevant/affected Python packages and their versions: N/A
Actual behavior
Here's some screenshots:
Note that in both screenshots, the hover popup only shows the Class docstring.
Note: If there is no class docstring, the hover popup has no docstring info.
Expected (requested?) behavior
Hover popup would include constructor docstring. This is how e.g., IPython behaves.
Python 3.6.6 |Anaconda, Inc.| (default, Jun 28 2018, 17:14:51)
Type 'copyright', 'credits' or 'license' for more information
IPython 6.4.0 -- An enhanced Interactive Python. Type '?' for help.
In [1]: import test
In [2]: test.TestClass?
Init signature: test.TestClass(my_param)
Docstring: Class docstring
Init docstring: Constructor docstring
File: ~/Code/test/test.py
Type: type