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 Przemyslaw Wegrzyn
Recipients Przemyslaw Wegrzyn
Date 2016-07-27.11:54:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1469620496.01.0.933139136376.issue27634@psf.upfronthosting.co.za>
In-reply-to
Content
The SelectSelector makes a local copy of select.select() built-in and calls it via self._select later on. It no longer works if select.select() built-in is replaced with function (something gevent's monkey patching does).

Currently gevent employs a workaround - it overwrites SelectSelector._select. It wouldn't be necessary if SelectSelector could cope with select.select() being a regular function.

Attached is a file reproducing the issue.
History
Date User Action Args
2016-07-27 11:54:56Przemyslaw Wegrzynsetrecipients: + Przemyslaw Wegrzyn
2016-07-27 11:54:56Przemyslaw Wegrzynsetmessageid: <1469620496.01.0.933139136376.issue27634@psf.upfronthosting.co.za>
2016-07-27 11:54:55Przemyslaw Wegrzynlinkissue27634 messages
2016-07-27 11:54:55Przemyslaw Wegrzyncreate