PyVirtualDisplay
PyVirtualDisplay copied to clipboard
Replace select.select by select.poll
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