summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGiampaolo RodolĂ  <g.rodola@gmail.com>2010-05-06 17:57:06 (GMT)
committerGiampaolo RodolĂ  <g.rodola@gmail.com>2010-05-06 17:57:06 (GMT)
commitf7454fa98dfe5d2c3d59437aade27b5daa6208c5 (patch)
treed87578596420ca2799f21eb387d0cbb9f0db4de5 /Misc
parenta8ac944924281a2604c1a3329465705fe30bab68 (diff)
downloadcpython-f7454fa98dfe5d2c3d59437aade27b5daa6208c5.zip
cpython-f7454fa98dfe5d2c3d59437aade27b5daa6208c5.tar.gz
cpython-f7454fa98dfe5d2c3d59437aade27b5daa6208c5.tar.bz2
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')
-rw-r--r--Misc/NEWS7
1 files changed, 7 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ea227a4..6d1423b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -41,6 +41,13 @@ 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.
+ The cheap inheritance has been deprecated.
+
- Issue #4265: shutil.copyfile() was leaking file descriptors when disk fills.
Patch by Tres Seaver.