mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-22 20:16:54 +03:00
monkeyfarmer: Make polling even more robust
Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
This commit is contained in:
parent
41ecb495d0
commit
6826e5d612
@ -148,10 +148,10 @@ class MonkeyFarmer(asyncore.dispatcher):
|
|||||||
asyncore.loop(timeout=next_event - now, count=1)
|
asyncore.loop(timeout=next_event - now, count=1)
|
||||||
else:
|
else:
|
||||||
asyncore.loop(count=1)
|
asyncore.loop(count=1)
|
||||||
if len(self.lines) > 0:
|
while len(self.lines) > 0:
|
||||||
self.monkey_says(self.lines.pop(0))
|
self.monkey_says(self.lines.pop(0))
|
||||||
if once:
|
if once or self.deadmonkey:
|
||||||
break
|
return
|
||||||
|
|
||||||
|
|
||||||
class Browser:
|
class Browser:
|
||||||
|
Loading…
Reference in New Issue
Block a user