Julien Palard <[email protected]> added the comment:
Looks like this behavior is documented in the bio_should_retry(3) man page.
Basically bio_should_retry() tells if the error was non-fatal:
int BIO_fd_should_retry(int i)
{
int err;
if ((i == 0) || (i == -1)) {
err = get_last_sys_error();
return BIO_fd_non_fatal_error(err);
}
return 0;
}
----------
nosy: +mdk
_______________________________________
Python tracker <[email protected]>
<https://bugs.python.org/issue32275>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com