summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-03-19 20:23:09 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-03-19 20:23:09 (GMT)
commitf5d7cc239e61e063e7bab783d55deb8e72210674 (patch)
treec38cd940eb8802126da7f123022f561d2e8e20d8 /Misc
parentfcb6d6a3b3bfba67927ced18dd648ba889e14f4c (diff)
downloadcpython-f5d7cc239e61e063e7bab783d55deb8e72210674.zip
cpython-f5d7cc239e61e063e7bab783d55deb8e72210674.tar.gz
cpython-f5d7cc239e61e063e7bab783d55deb8e72210674.tar.bz2
#8862: Fix curses cleanup with getchar is interrupted by a signal.
I have no idea how one would write a test for this. Patch by July Tikhonov.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9a62a02..4ebd699 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -233,6 +233,8 @@ Core and Builtins
Library
-------
+- Issue #8862: Fixed curses cleanup when getkey is interrputed by a signal.
+
- Issue #17443: impalib.IMAP4_stream was using the default unbuffered IO
in subprocess, but the imap code assumes buffered IO. In Python2 this
worked by accident. IMAP4_stream now explicitly uses buffered IO.