From fbb0c032e89c42ab44f5372df40fffb34a91b575 Mon Sep 17 00:00:00 2001 From: Hai Shi Date: Wed, 14 Aug 2019 04:52:36 -0500 Subject: [PATCH] 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. --- Lib/test/support/__init__.py | 3 +++ 1 file changed, 3 insertions(+) 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 -- 2.47.3