summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRonald Oussoren <ronaldoussoren@mac.com>2009-09-20 14:18:15 (GMT)
committerRonald Oussoren <ronaldoussoren@mac.com>2009-09-20 14:18:15 (GMT)
commit9f20d9d0ee78f7bd810dfe788a8d1319afbc36e7 (patch)
tree139e1f5b7e05f8504457db5d9a595e5ffb727966 /Misc
parent956f4b2520ef921daa3ab1083d56d74317505c2e (diff)
downloadcpython-9f20d9d0ee78f7bd810dfe788a8d1319afbc36e7.zip
cpython-9f20d9d0ee78f7bd810dfe788a8d1319afbc36e7.tar.gz
cpython-9f20d9d0ee78f7bd810dfe788a8d1319afbc36e7.tar.bz2
Issue 6877: this patch makes it possible to link the readline extension
to the libedit emulation of the readline API on OSX 10.5 or later. This also adds a minimal testsuite for readline to check that the history manipuation functions have the same interface with both C libraries.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index bdd121c..8261b6c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1335,6 +1335,9 @@ C-API
Extension Modules
-----------------
+- Issue #6877: Make it possible to link the readline extension to libedit
+ on OSX.
+
- Issue #6944: Fix a SystemError when socket.getnameinfo() was called
with something other than a tuple as first argument.