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 serhiy.storchaka
Recipients berker.peksag, docs@python, python-dev, r.david.murray, serhiy.storchaka, vstinner
Date 2016-09-27.08:25:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1474964727.04.0.873960760453.issue20100@psf.upfronthosting.co.za>
In-reply-to
Content
Old code looked strange after issue18571:

        flags |= EPOLL_CLOEXEC;
        if (flags)
            self->epfd = epoll_create1(flags);
        else

The condition is always true unless EPOLL_CLOEXEC is 0.
History
Date User Action Args
2016-09-27 08:25:27serhiy.storchakasetrecipients: + serhiy.storchaka, vstinner, r.david.murray, docs@python, python-dev, berker.peksag
2016-09-27 08:25:27serhiy.storchakasetmessageid: <1474964727.04.0.873960760453.issue20100@psf.upfronthosting.co.za>
2016-09-27 08:25:27serhiy.storchakalinkissue20100 messages
2016-09-27 08:25:26serhiy.storchakacreate