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 Marco Sulla, terry.reedy
Date 2019-11-09.02:41:43
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1573267304.87.0.726518457461.issue38747@roundup.psfhosted.org>
In-reply-to
Content
In interactive mode, python.exe interacts with a console/(dumb terminal) through the std streams using \n as a special character  It gets input from stdin, send output to stdout or errors to stderr.  The terminal, not python, handles line editing and history retrieval.  Once a statement is entered and executed, python has no memory of it.

On Linux, one can use readline and ncurses modules for somewhat enhances interaction.

IPython is GUI-based.  Python already come with a GUI-based IDE, IDLE, which has many of the features you list - autoindent, statement history, save, line numbers in the editor, syntax coloring, and some source inspection.  Code with blank lines within statement can be pasted into an editor window and run either with or without clearing the shell workspace.

There are other alternatives with similar features, but this is not the place to discuss them.  The point is that there is no need to completely rewrite current text-based interactive mode.
History
Date User Action Args
2019-11-09 02:41:44terry.reedysetrecipients: + terry.reedy, Marco Sulla
2019-11-09 02:41:44terry.reedysetmessageid: <1573267304.87.0.726518457461.issue38747@roundup.psfhosted.org>
2019-11-09 02:41:44terry.reedylinkissue38747 messages
2019-11-09 02:41:43terry.reedycreate