From: R David Murray Date: Sun, 29 Mar 2015 19:19:13 +0000 (-0400) Subject: Merge: #23792: Ignore KeyboardInterrupt when the pydoc pager is active. X-Git-Tag: v3.5.0a3~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f375b0a4d5a0362ca9b927e626a00c8328f3ac04;p=thirdparty%2FPython%2Fcpython.git Merge: #23792: Ignore KeyboardInterrupt when the pydoc pager is active. --- f375b0a4d5a0362ca9b927e626a00c8328f3ac04 diff --cc Misc/NEWS index 5fa6b723244f,9852102f9037..64026173fb0c --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -30,18 -21,12 +30,22 @@@ Core and Builtin Library ------- + - Issue #23792: Ignore KeyboardInterrupt when the pydoc pager is active. + This mimics the behavior of the standard unix pagers, and prevents + pipepager from shutting down while the pager itself is still running. + +- Issue #23775: pprint() of OrderedDict now outputs the same representation + as repr(). + +- Issue #23765: Removed IsBadStringPtr calls in ctypes + +- Issue #22364: Improved some re error messages using regex for hints. + - Issue #23742: ntpath.expandvars() no longer loses unbalanced single quotes. +- Issue #21717: The zipfile.ZipFile.open function now supports 'x' (exclusive + creation) mode. + - Issue #21802: The reader in BufferedRWPair now is closed even when closing writer failed in BufferedRWPair.close().