From: Raymond Hettinger Date: Sun, 29 Jun 2003 03:29:42 +0000 (+0000) Subject: SF patch #760257: add socket.timeout exception X-Git-Tag: v2.3c1~270 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=643bcecad03004e83ecfc3560bf85ceb628280ab;p=python SF patch #760257: add socket.timeout exception --- diff --git a/Misc/NEWS b/Misc/NEWS index 08ca40ffa3..936778817b 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -58,6 +58,9 @@ Core and builtins Extension modules ----------------- +- the socket module has a new exception, socket.timeout, to allow + timeouts to be handled separately from other socket errors. + - mimetools.choose_boundary() could return duplicate strings at times, especially likely on Windows. The strings returned are now guaranteed unique within a single program run.