diff options
author | Giampaolo RodolĂ <g.rodola@gmail.com> | 2010-05-06 17:57:06 (GMT) |
---|---|---|
committer | Giampaolo RodolĂ <g.rodola@gmail.com> | 2010-05-06 17:57:06 (GMT) |
commit | f7454fa98dfe5d2c3d59437aade27b5daa6208c5 (patch) | |
tree | d87578596420ca2799f21eb387d0cbb9f0db4de5 /Misc | |
parent | a8ac944924281a2604c1a3329465705fe30bab68 (diff) | |
download | cpython-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/NEWS | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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. |