Issue #12065: connect_ex() on an SSL socket now returns the original errno
when the socket's timeout expires (it used to return None).
diff --git a/Misc/NEWS b/Misc/NEWS
index 901250f..1ec836e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -153,6 +153,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 #8809: The SMTP_SSL constructor and SMTP.starttls() now support
   passing a ``context`` argument pointing to an ssl.SSLContext instance.
   Patch by Kasun Herath.