From: Martin Panter Date: Tue, 22 Mar 2016 09:28:58 +0000 (+0000) Subject: Issue #24266: Merge readline Ctrl+C handling from 3.5 X-Git-Tag: v3.6.0a1~411 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0b2d71bc70c32560853fa91f58dc37af8f08090c;p=thirdparty%2FPython%2Fcpython.git Issue #24266: Merge readline Ctrl+C handling from 3.5 --- 0b2d71bc70c32560853fa91f58dc37af8f08090c diff --cc Misc/NEWS index 6dfac97c24e9,0058124e570d..e6d69a29319f --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -232,12 -93,10 +232,15 @@@ Core and Builtin Library ------- + - Issue #24266: Ctrl+C during Readline history search now cancels the search + mode when compiled with Readline 7. + +- Issue #26590: Implement a safe finalizer for the _socket.socket type. It now + releases the GIL to close the socket. + +- Issue #18787: spwd.getspnam() now raises a PermissionError if the user + doesn't have privileges. + - Issue #26560: Avoid potential ValueError in BaseHandler.start_response. Initial patch by Peter Inglesby.