commit | 40f12ab0c5c5adc4a8b4a03a57ffa94c87ecc2cb | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Fri Dec 28 19:03:43 2012 +0100 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Fri Dec 28 19:03:43 2012 +0100 |
tree | 8329b0fe6c8544f4f42cb6ccac746e23479796c4 | |
parent | c4051aa8eb3c9c753c23ead3db957408b26fc5a2 [diff] [blame] |
Backport Python 3.2 fix for issue #12065, and add another test for SSLSocket.connect_ex().
diff --git a/Misc/NEWS b/Misc/NEWS index b718641..f087f41 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -175,6 +175,9 @@ 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). + - Issue #16504: IDLE now catches SyntaxErrors raised by tokenizer. Patch by Roger Serwy.