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 ncoghlan
Recipients aliles, kristjan.jonsson, ncoghlan
Date 2012-12-09.06:34:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1355034868.91.0.795623819186.issue16649@psf.upfronthosting.co.za>
In-reply-to
Content
code.InteractiveConsole.push attempts to support multi-line input when using an input method that doesn't reliably split on newlines.

This support fails as soon as the multi-line input contains multiple statements (including when the last statement is incomplete).

However, switching to 'exec' instead of 'single' causes other problems - specifically, it turns off the expression printing.

While expression printing could be implied by the PyCF_DONT_IMPLY_DEDENT flag in addition to the "single" evaluation mode, it seems cleaner to break out the expression printing behaviour into its own flag and setting it appropriately in the code and/or codeop modules.
History
Date User Action Args
2012-12-09 06:34:28ncoghlansetrecipients: + ncoghlan, kristjan.jonsson, aliles
2012-12-09 06:34:28ncoghlansetmessageid: <1355034868.91.0.795623819186.issue16649@psf.upfronthosting.co.za>
2012-12-09 06:34:28ncoghlanlinkissue16649 messages
2012-12-09 06:34:27ncoghlancreate