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 martin.panter
Recipients martin.panter, twouters, tylercrompton
Date 2016-04-27.10:02:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1461751339.63.0.597743314473.issue26870@psf.upfronthosting.co.za>
In-reply-to
Content
Solution 3 (documentation) can easily be done for existing versions of Python. Any other fix I think would have to be done in the next Python version (3.6).

By solution 2 (dynamically swap histories), do you mean add an API to save and load the entire history list somewhere, like read/write_history_file(), but maybe to a Python list instead?

A variation on solution 4 came to my mind: Add a global variable or function to the readline module to enable or disable automatic history addition. Or maybe a callback that is run after a line is entered, with it set to the current implementation by default.

If I understand solution 5 (new version of call_readline), that also seems reasonable. I guess you mean to add a new function to replace the Python call to input()? A minor downside would be that the caller has to do extra work if it wants to use input() when the Readline library is unavailable.
History
Date User Action Args
2016-04-27 10:02:19martin.pantersetrecipients: + martin.panter, twouters, tylercrompton
2016-04-27 10:02:19martin.pantersetmessageid: <1461751339.63.0.597743314473.issue26870@psf.upfronthosting.co.za>
2016-04-27 10:02:19martin.panterlinkissue26870 messages
2016-04-27 10:02:19martin.pantercreate