This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author terry.reedy
Recipients Saumitra Verma, epaine, terry.reedy
Date 2020-07-07.21:48:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1594158500.64.0.226689763072.issue41230@roundup.psfhosted.org>
In-reply-to
Content
IDLE already has autocomplete of names, attributes, and string paths.  This is documented in the Completion subsection of the Editing and Navigation section of the doc, easily accessible on the Help menu.  Please read the doc before suggesting enhancements.

Issue 27609 summarizes approximately 10 existing bpo issues for improving completions.  Please check the list there before suggesting a specific change.

I believe that 'Intellisense' is a Microsoft's trademark for a Visual Studio feature.  It should not be used generically.  Since I only ever used VS, in the past, to compile python.exe, I never knew what Intellisense did, just that it made me wait when I opened VS.  (/PCBuild in the CPython repository now has build.bat to directly invoke the compiler without this delay.)

I am guessing from your wording that at least part of the Intellisense delay is to recompile the database needed for completions.  As a C++ program, VS cannot import python the current text of python modules the way that a python-coded IDE can.  It might be nice to add something to the stdlib that could be used by any python editor or shell, but I will not pursue that until existing issues are finished.
History
Date User Action Args
2020-07-07 21:48:20terry.reedysetrecipients: + terry.reedy, epaine, Saumitra Verma
2020-07-07 21:48:20terry.reedysetmessageid: <1594158500.64.0.226689763072.issue41230@roundup.psfhosted.org>
2020-07-07 21:48:20terry.reedylinkissue41230 messages
2020-07-07 21:48:20terry.reedycreate