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 Manjusaka
Recipients Manjusaka, asvetlov, giampaolo.rodola, gvanrossum, neologix, vstinner, yselivanov
Date 2018-12-17.19:06:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1545073577.04.0.788709270274.issue35517@psf.upfronthosting.co.za>
In-reply-to
Content
Actually, in my implementation, it also supports POLL with the different event.

I don't think to make selector be a public property is a good idea. It will break the whole system integrity.

Please think about it, if people want to use epoll/poll with some special event, they must use it like this.

>  s = selectors.EpollSelector()
>  s.selector.register(fd,select.EPOLLIN | select.EPOLLEXCLUSIVE)
>  s.selector.modify(fd,select.EPOLLOU | select.EPOLLEXCLUSIVE)

Here's a question, why we support the register?

I think it will make people don't care about the detail.

So, as you say, it's a little bit complicated, but it will help people don't care about the selector property detail, they just use the argument when they want to use it.

I think it's worth it.
History
Date User Action Args
2018-12-17 19:06:17Manjusakasetrecipients: + Manjusaka, gvanrossum, vstinner, giampaolo.rodola, asvetlov, neologix, yselivanov
2018-12-17 19:06:17Manjusakasetmessageid: <1545073577.04.0.788709270274.issue35517@psf.upfronthosting.co.za>
2018-12-17 19:06:17Manjusakalinkissue35517 messages
2018-12-17 19:06:16Manjusakacreate