summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-03-19 20:26:19 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-03-19 20:26:19 (GMT)
commitaf3ba4873a90b2e7e31ed01c12a40141410e9f6a (patch)
tree24a61c5bf639de646dba97fdce1fb3e019031159 /Misc
parent47bb16b0de9ff203e77be45acb65d8a35f06d085 (diff)
parent779dab9447db4a2b139270de4401c2cf8af87363 (diff)
downloadcpython-af3ba4873a90b2e7e31ed01c12a40141410e9f6a.zip
cpython-af3ba4873a90b2e7e31ed01c12a40141410e9f6a.tar.gz
cpython-af3ba4873a90b2e7e31ed01c12a40141410e9f6a.tar.bz2
Merge: #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 fa5a50e..11399bb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -289,6 +289,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.