diff options
author | Giampaolo Rodola' <g.rodola@gmail.com> | 2012-03-22 15:24:33 (GMT) |
---|---|---|
committer | Giampaolo Rodola' <g.rodola@gmail.com> | 2012-03-22 15:24:33 (GMT) |
commit | f4ce1146fc00a4477ee03eeecbc90566384a041f (patch) | |
tree | e6c85b052df640befa031c28dcdaa9e45b7005a4 /Misc | |
parent | 3539ef3d21a47beff871636bdf6cd5e40aa556e4 (diff) | |
download | cpython-f4ce1146fc00a4477ee03eeecbc90566384a041f.zip cpython-f4ce1146fc00a4477ee03eeecbc90566384a041f.tar.gz cpython-f4ce1146fc00a4477ee03eeecbc90566384a041f.tar.bz2 |
fix #10340: properly handle EINVAL on OSX and also avoid to call handle_connect() in case of a disconnetected socket which is not meant to connect.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -34,6 +34,10 @@ Core and Builtins Library ------- +- Issue #10340: asyncore - properly handle EINVAL in dispatcher constructor on + OSX; avoid to call handle_connect in case of a disconnected socket which + was not meant to connect. + - Issue #14204: The ssl module now has support for the Next Protocol Negotiation extension, if available in the underlying OpenSSL library. Patch by Colin Marc. |