Message 123702 - Python tracker
Message123702
| Author | ned.deily |
|---|---|
| Recipients | belopolsky, cben, eric.araujo, lesmana, ned.deily, pitrou, r.david.murray, ronaldoussoren |
| Date | 2010-12-09.21:47:21 |
| SpamBayes Score | 0.00046136056 |
| Marked as misclassified | No |
| Message-id | <1291931245.9.0.322047925348.issue5845@psf.upfronthosting.co.za> |
| In-reply-to |
| Content | |
|---|---|
Keep in bind that there the Python readline module may be linked to either GNU readline or the BSD editline (libedit) library and they have different command strings. Note the warning here: http://docs.python.org/dev/py3k/library/readline.html Here's a snippet of what I have today in my startup file: import rlcompleter if 'libedit' in readline.__doc__: readline.parse_and_bind("bind ^I rl_complete") else: readline.parse_and_bind("tab: complete") See Issue10666 for more details and some possible changes. |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2010-12-09 21:48:17 | ned.deily | unlink | issue5845 messages |
| 2010-12-09 21:47:25 | ned.deily | set | recipients: + ned.deily, ronaldoussoren, cben, belopolsky, pitrou, eric.araujo, r.david.murray, lesmana |
| 2010-12-09 21:47:25 | ned.deily | set | messageid: <1291931245.9.0.322047925348.issue5845@psf.upfronthosting.co.za> |
| 2010-12-09 21:47:21 | ned.deily | link | issue5845 messages |
| 2010-12-09 21:47:21 | ned.deily | create | |