summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2013-10-12 22:47:58 (GMT)
committerNed Deily <nad@acm.org>2013-10-12 22:47:58 (GMT)
commit5d4121a6311065723426b977a8f080518cdf8738 (patch)
tree4ba55758608e9a26df8c9a84c5b0d2af51b1cdbf /Misc
parenta14034872bfe9b5fca07125e7369b8c7030c164b (diff)
downloadcpython-5d4121a6311065723426b977a8f080518cdf8738.zip
cpython-5d4121a6311065723426b977a8f080518cdf8738.tar.gz
cpython-5d4121a6311065723426b977a8f080518cdf8738.tar.bz2
Issue #18458: Prevent crashes with newer versions of libedit. Its readline
emulation has changed from 0-based indexing to 1-based like gnu readline. Original patch by Ronald Oussoren.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c1c9eaa..536ea0e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -76,6 +76,10 @@ Core and Builtins
Library
-------
+- Issue #18458: Prevent crashes with newer versions of libedit. Its readline
+ emulation has changed from 0-based indexing to 1-based like gnu readline.
+ Original patch by Ronald Oussoren.
+
- Issue #18919: If the close() method of a writer in the sunau or wave module
failed, second invocation of close() and destructor no more raise an
exception.