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 ruben
Recipients ruben
Date 2008-05-02.18:05:38
SpamBayes Score 0.11105417
Marked as misclassified No
Message-id <1209751540.52.0.644222816573.issue2740@psf.upfronthosting.co.za>
In-reply-to
Content
Hi,

Leopard ships with libedit, which is almost the same as readline, but 
has another way to configure completion keys. To enable tab completion 
you have to use rl.parse_and_bind("bind ^I complete") instead of rl.parse_and_bind("bind ^I rl_complete") instead of rl.parse_and_bind("tab: complete").

The guys from IPython patched around it, see http://ipython.scipy.org/moin/InstallationOSXLeopard/LeopardPythonReadli
ne, but is seems to me this is better solved in the python readline 
module itself.
History
Date User Action Args
2008-05-02 18:05:40rubensetspambayes_score: 0.111054 -> 0.11105417
recipients: + ruben
2008-05-02 18:05:40rubensetspambayes_score: 0.111054 -> 0.111054
messageid: <1209751540.52.0.644222816573.issue2740@psf.upfronthosting.co.za>
2008-05-02 18:05:39rubenlinkissue2740 messages
2008-05-02 18:05:38rubencreate