diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-04-02 15:17:12 +0200 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-04-02 15:17:12 +0200 |
commit | a135cb814316c88ba689c61cbb98e11c815153bb (patch) | |
tree | 478ec54ad6e0318cc799cadefd702aa9b82d49f6 | |
parent | 38aec7525eb22d2ea0090be610d6ababb4c8882f (diff) | |
download | cpython-git-a135cb814316c88ba689c61cbb98e11c815153bb.tar.gz |
Issue #23618: Ooops, remove abort() added for debug purpose
-rw-r--r-- | Modules/socketmodule.c | 1 |
1 files changed, 0 insertions, 1 deletions
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; |