summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2013-10-12 22:45:25 (GMT)
committerNed Deily <nad@acm.org>2013-10-12 22:45:25 (GMT)
commit62a192931b5e387f2fd5b6f90ebe505ee6b95404 (patch)
treee652ab2fdfafa5b815e144661e0cf402bbe5018e /Misc
parent4243fbf3724d0315c6c81fdd896e5336b434c631 (diff)
downloadcpython-62a192931b5e387f2fd5b6f90ebe505ee6b95404.zip
cpython-62a192931b5e387f2fd5b6f90ebe505ee6b95404.tar.gz
cpython-62a192931b5e387f2fd5b6f90ebe505ee6b95404.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 ee4f001..b7402e1 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -32,6 +32,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. Second invocation of close() on sunau writer now has no effects.