Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit dd83bd2

Browse files
committed
Issue #23618: Fix internal_connect_select()
1 parent 416f2e6 commit dd83bd2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Modules/socketmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -680,7 +680,7 @@ internal_select(PySocketSockObject *s, int writing, _PyTime_t interval)
680680
static int
681681
internal_connect_select(PySocketSockObject *s)
682682
{
683-
return internal_select(s, 1, s->sock_timeout, 1);
683+
return internal_select_impl(s, 1, s->sock_timeout, 1);
684684
}
685685

686686
/*

0 commit comments

Comments
 (0)