beeref/tests/utils.py

6 lines
118 B
Python
Raw Permalink Normal View History

2021-05-31 16:11:45 +00:00
def queue2list(queue):
qlist = []
while not queue.empty():
qlist.append(queue.get())
return qlist