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, giampaolo.rodola, neologix, vstinner, yselivanov
Date 2018-12-17.11:42:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1545046926.3.0.788709270274.issue35517@psf.upfronthosting.co.za>
In-reply-to
Content
In my opinion

selectors is an abstract for select, so I don't think allow people use select.* in selector is a good idea.

like this

> s.register(fd, EVENT_READ, extra_events=select.EPOLLEXCLUSIVE | select.EPOLLONESHOT)

Because the multiple epoll's params are supported in different Python version and Linux Kernel version.

So, I think it's a good idea to support different epoll's params by keyword-only param in register method.

It's also convenient to check the params
History
Date User Action Args
2018-12-17 11:42:06Manjusakasetrecipients: + Manjusaka, vstinner, giampaolo.rodola, neologix, yselivanov
2018-12-17 11:42:06Manjusakasetmessageid: <1545046926.3.0.788709270274.issue35517@psf.upfronthosting.co.za>
2018-12-17 11:42:06Manjusakalinkissue35517 messages
2018-12-17 11:42:06Manjusakacreate