summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2013-03-19 22:03:26 (GMT)
committerGregory P. Smith <greg@krypto.org>2013-03-19 22:03:26 (GMT)
commitdd351628942718ede440c8ffe6911f379c9e15b1 (patch)
tree1c0937103d8a7c54f185dfd208a02192da369f04 /Misc
parent029273fc903bcbdd689132f153d53004a8aee0b2 (diff)
parent843fae93121ac7ac1088b0521773eff567e7b41c (diff)
downloadcpython-dd351628942718ede440c8ffe6911f379c9e15b1.zip
cpython-dd351628942718ede440c8ffe6911f379c9e15b1.tar.gz
cpython-dd351628942718ede440c8ffe6911f379c9e15b1.tar.bz2
merge heads in 3.2
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS9
2 files changed, 10 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index b5c8059..6ea3f78 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1098,6 +1098,7 @@ Richard Townsend
Nathan Trapuzzano
Laurence Tratt
John Tromp
+Diane Trout
Jason Trowbridge
Brent Tubbs
Anthony Tuininga
diff --git a/Misc/NEWS b/Misc/NEWS
index 482ffea..856eae4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -233,6 +233,15 @@ 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.
+
+- Issue #17476: Fixed regression relative to Python2 in undocumented pydoc
+ 'allmethods'; it was missing unbound methods on the class.
+
- Issue #16389: Fixed a performance regression relative to Python 3.1 in the
caching of compiled regular expressions.