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.
Created on 2013年07月15日 12:37 by ronaldoussoren, last changed 2022年04月11日 14:57 by admin. This issue is now closed.
| Messages (3) | |||
|---|---|---|---|
| msg193092 - (view) | Author: Ronald Oussoren (ronaldoussoren) * (Python committer) | Date: 2013年07月15日 12:37 | |
Modules/readline.c contains some code that improves interop with the readline emulation in libedit. That interop code is currently guarded by '#ifdef __APPLE__' preprocessor tests. This should be replaced by '#if HAVE_LIBEDIT' to make it possible to use the same interop code on other platforms with libedit (such as BSD systems). A patch should have two parts: 1) Detect in either configure or setup.py if libedit's readline emulation will/should be used. 2) Change the __APPLE__ guards by HAVE_LIBEDIT guards. |
|||
| msg228608 - (view) | Author: Mark Lawrence (BreamoreBoy) * | Date: 2014年10月05日 18:21 | |
Just a gentle reminder. |
|||
| msg243974 - (view) | Author: Martin Panter (martin.panter) * (Python committer) | Date: 2015年05月24日 09:47 | |
There was already a potential patch in Issue 13501. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:57:48 | admin | set | github: 62659 |
| 2015年05月24日 09:54:16 | martin.panter | set | status: open -> closed stage: needs patch -> resolved |
| 2015年05月24日 09:47:31 | martin.panter | set | nosy:
+ martin.panter messages: + msg243974 resolution: duplicate superseder: Make libedit support more generic; port readline / libedit to FreeBSD |
| 2014年10月05日 18:21:56 | BreamoreBoy | set | versions:
+ Python 2.7, Python 3.5 nosy: + BreamoreBoy messages: + msg228608 components: + Extension Modules |
| 2013年07月15日 12:37:00 | ronaldoussoren | create | |