From a135cb814316c88ba689c61cbb98e11c815153bb Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Thu, 2 Apr 2015 15:17:12 +0200 Subject: [PATCH] Issue #23618: Ooops, remove abort() added for debug purpose --- Modules/socketmodule.c | 1 - 1 file changed, 1 deletion(-) diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 81e9cc908f..89df463a52 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -2592,7 +2592,6 @@ sock_connect_impl(PySocketSockObject *s, void* Py_UNUSED(data)) if (err != 0) { /* sock_call_ex() uses GET_SOCK_ERROR() to get the error code */ SET_SOCK_ERROR(err); - abort(); return 0; } return 1; -- 2.50.0