Environment data
- VS Code version: 1.54.2
- Extension version: v2021.3.658691958
- OS and version: Windows 10 Pro
- Python version (& distribution if applicable, e.g. Anaconda): 3.9.1
- Type of virtual environment used: N/A
- Relevant/affected Python packages and their versions: N/A
- Relevant/affected Python-related VS Code extensions and their versions: N/A
- Value of the
python.languageServer setting: Jedi
Expected behaviour
Completion of standard print function:
prin -> print or print()
Completion of NumPy array shape property:
a.shap -> a.shape
Actual behaviour
Completion of standard print function:
prin -> print(sep=..., end=..., file=..., flush=...)
Completion of NumPy array shape property:
a.shap -> a.shape(value)
Environment data
python.languageServersetting: JediExpected behaviour
Completion of standard
printfunction:prin->printorprint()Completion of NumPy array
shapeproperty:a.shap->a.shapeActual behaviour
Completion of standard
printfunction:prin->print(sep=..., end=..., file=..., flush=...)Completion of NumPy array
shapeproperty:a.shap->a.shape(value)