summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorGiampaolo RodolĂ  <g.rodola@gmail.com>2010-05-06 18:06:30 (GMT)
committerGiampaolo RodolĂ  <g.rodola@gmail.com>2010-05-06 18:06:30 (GMT)
commit8d2dc851547846a82eee7fa4f057ab7e097324f1 (patch)
tree2e4c6afbfad77057ecdc9bcbdcac545b7bc63c86 /Misc/NEWS
parentd75b2a90d9f3f3342f5f07631f74d9c7ba34c6b3 (diff)
downloadcpython-8d2dc851547846a82eee7fa4f057ab7e097324f1.zip
cpython-8d2dc851547846a82eee7fa4f057ab7e097324f1.tar.gz
cpython-8d2dc851547846a82eee7fa4f057ab7e097324f1.tar.bz2
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/NEWS7
1 files changed, 7 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ef00387..a48f8ed 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -348,6 +348,13 @@ C-API
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.
+ The cheap inheritance has been deprecated.
+
- Issue #4265: shutil.copyfile() was leaking file descriptors when disk fills.
Patch by Tres Seaver.