summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorGiampaolo RodolĂ  <g.rodola@gmail.com>2010-05-06 18:37:34 (GMT)
committerGiampaolo RodolĂ  <g.rodola@gmail.com>2010-05-06 18:37:34 (GMT)
commitc2f1dca62de8c1c5377b5323e49685fc6a0396ff (patch)
tree81000dfa58250c2c3205e0e17131245809cc7bfe /Misc/NEWS
parent452a580848642d235375b9957ba4c7cceb5b0a5b (diff)
downloadcpython-c2f1dca62de8c1c5377b5323e49685fc6a0396ff.zip
cpython-c2f1dca62de8c1c5377b5323e49685fc6a0396ff.tar.gz
cpython-c2f1dca62de8c1c5377b5323e49685fc6a0396ff.tar.bz2
Merged revisions 80876 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r80876 | giampaolo.rodola | 2010-05-06 20:06:30 +0200 (gio, 06 mag 2010) | 9 lines Merged revisions 80875 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r80875 | giampaolo.rodola | 2010-05-06 19:57:06 +0200 (gio, 06 mag 2010) | 1 line Fix asyncore issues 8573 and 8483: _strerror might throw ValueError; asyncore.__getattr__ cheap inheritance caused confusing error messages when accessing undefined class attributes; added an alias for __str__ which now is used as a fallback for __repr__ ........ ................
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c9a82fd..3256e31 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -40,6 +40,12 @@ Core and Builtins
Library
-------
+- Issue #8573: asyncore _strerror() function might throw ValueError.
+
+- Issue #8483: asyncore.dispatcher's __getattr__ method produced confusing
+ error messages when accessing undefined class attributes because of the cheap
+ inheritance with the underlying socket object.
+
- Issue #7472: Fixed typo in email.encoders module; messages using ISO-2022
character sets will now consistently use a Content-Transfer-Encoding of
7bit rather than sometimes being marked as 8bit.