ponty / PyVirtualDisplay

Python wrapper for Xvfb, Xephyr and Xvnc
BSD 2-Clause "Simplified" License
697 stars 78 forks source link

Replace select.select by select.poll #91

Open cgiraudeau opened 7 months ago

cgiraudeau commented 7 months ago

The function select.select can only accept file descriptors below 1024. To avoid this limitation, the solution is to use select.poll in place of select.select.

See: https://github.com/ponty/PyVirtualDisplay/issues/90