diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-05-18 16:51:06 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-05-18 16:51:06 (GMT) |
commit | b4410dbea699eb59358d3d61f45749173167d69a (patch) | |
tree | 8cb1989e16c2045303068fe3489e47bdb2e35ece /Misc | |
parent | 3349bca46d66f993e97407ba756e3f515a863fad (diff) | |
download | cpython-b4410dbea699eb59358d3d61f45749173167d69a.zip cpython-b4410dbea699eb59358d3d61f45749173167d69a.tar.gz cpython-b4410dbea699eb59358d3d61f45749173167d69a.tar.bz2 |
Issue #12065: connect_ex() on an SSL socket now returns the original errno
when the socket's timeout expires (it used to return None).
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -2,6 +2,21 @@ Python News +++++++++++ +What's New in Python 3.2.2? +=========================== + +*Release date: XX-XXX-2011* + +Core and Builtins +----------------- + +Library +------- + +- Issue #12065: connect_ex() on an SSL socket now returns the original errno + when the socket's timeout expires (it used to return None). + + What's New in Python 3.2.1 release candidate 1? =============================================== |