This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author mdk
Recipients alex, christian.heimes, dstufft, janssen, mdk, njs, pitrou, vstinner
Date 2017-12-11.11:28:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1512991680.12.0.213398074469.issue32275@psf.upfronthosting.co.za>
In-reply-to
Content
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;
    }
History
Date User Action Args
2017-12-11 11:28:00mdksetrecipients: + mdk, janssen, pitrou, vstinner, christian.heimes, alex, njs, dstufft
2017-12-11 11:28:00mdksetmessageid: <1512991680.12.0.213398074469.issue32275@psf.upfronthosting.co.za>
2017-12-11 11:28:00mdklinkissue32275 messages
2017-12-11 11:28:00mdkcreate