diff options
author | Ned Deily <nad@acm.org> | 2013-10-12 22:45:25 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2013-10-12 22:45:25 (GMT) |
commit | 62a192931b5e387f2fd5b6f90ebe505ee6b95404 (patch) | |
tree | e652ab2fdfafa5b815e144661e0cf402bbe5018e /Misc | |
parent | 4243fbf3724d0315c6c81fdd896e5336b434c631 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |