diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-04-02 13:17:12 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-04-02 13:17:12 (GMT) |
commit | a135cb814316c88ba689c61cbb98e11c815153bb (patch) | |
tree | 478ec54ad6e0318cc799cadefd702aa9b82d49f6 /Modules/socketmodule.c | |
parent | 38aec7525eb22d2ea0090be610d6ababb4c8882f (diff) | |
download | cpython-a135cb814316c88ba689c61cbb98e11c815153bb.zip cpython-a135cb814316c88ba689c61cbb98e11c815153bb.tar.gz cpython-a135cb814316c88ba689c61cbb98e11c815153bb.tar.bz2 |
Issue #23618: Ooops, remove abort() added for debug purpose
Diffstat (limited to 'Modules/socketmodule.c')
-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 81e9cc9..89df463 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; |