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 terry.reedy
Date 2011-04-12.18:03:08
SpamBayes Score 3.6531544e-09
Marked as misclassified No
Message-id <1302631389.12.0.305553029462.issue11838@psf.upfronthosting.co.za>
In-reply-to
Content
One can currently save the contents of a shell window exactly as is, with opening message, prompts, and restarts. This essentially a screenshot of the frame -- fine for an IDLE doc but not useful for rerunning the code.
Similarly, if one pastes in interactive input/output, with or without secondary prompts, into an edit window, it is a nuisance to edit.

This issue proposes an option to 'flip' code and output lines, with prompts deleted and outputs commented, so that

Python 3.2 (r32:88445, Feb 20 2011, 21:29:02) [MSC v.1500 32 bit (Intel)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> 1+2
3

becomes

#Python 3.2 (r32:88445, Feb 20 2011, 21:29:02) [MSC v.1500 32 bit (Intel)] on win32
#Type "copyright", "credits" or "license()" for more information.
1+2
#3

(Ignore linewrap artifact on first line).
History
Date User Action Args
2011-04-12 18:03:09terry.reedysetrecipients: + terry.reedy
2011-04-12 18:03:09terry.reedysetmessageid: <1302631389.12.0.305553029462.issue11838@psf.upfronthosting.co.za>
2011-04-12 18:03:08terry.reedylinkissue11838 messages
2011-04-12 18:03:08terry.reedycreate