-
Notifications
You must be signed in to change notification settings - Fork 69
Open
Description
There are still a number of time.sleep() calls, particularly in close() and terminate(). This is bad for async code, because this will hog control when the event loop could be doing other things. I'd like to work out how to remove these. If that isn't possible, it should at least be marked very clearly which methods do this.