You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 23, 2017. It is now read-only.
When getter called get_nowait() (or await queue.get()), one pending putter would be scheduled to put an item in the next step of the event loop. When get_nowait() (or await queue.get()) was called for the second time, the queue was not full and the assertion in Queue.get_nowait (and Queue.get)
assertself.full(), 'queue not full, why are putters waiting?'