Christof Tinnes
Results
1
comments of
Christof Tinnes
As a workaround, check_msg might be modified to use polling: ``` def check_msg(self, timeout): poller = uselect.poll() poller.register(self.sock, uselect.POLLIN) res = poller.poll(timeout) # time in milliseconds if not res: return...