Julien Palard <julien+pyt...@palard.fr> 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 <rep...@bugs.python.org>
<https://bugs.python.org/issue32275>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to