From: Hai Shi Date: Wed, 14 Aug 2019 09:52:36 +0000 (-0500) Subject: bpo-37583: Add err 113 to support.get_socket_conn_refused_errs() (GH-15259) X-Git-Tag: v3.7.5rc1~191 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fbb0c032e89c42ab44f5372df40fffb34a91b575;p=thirdparty%2FPython%2Fcpython.git bpo-37583: Add err 113 to support.get_socket_conn_refused_errs() (GH-15259) Add error number 113 EHOSTUNREACH to get_socket_conn_refused_errs() of test.support. --- diff --git a/Lib/test/support/__init__.py b/Lib/test/support/__init__.py index bf1f0d2120ac..d04d19985f7a 100644 --- a/Lib/test/support/__init__.py +++ b/Lib/test/support/__init__.py @@ -1423,6 +1423,9 @@ def get_socket_conn_refused_errs(): # bpo-31910: socket.create_connection() fails randomly # with EADDRNOTAVAIL on Travis CI errors.append(errno.EADDRNOTAVAIL) + if hasattr(errno, 'EHOSTUNREACH'): + # bpo-37583: The destination host cannot be reached + errors.append(errno.EHOSTUNREACH) return errors