mirror of
https://github.com/rbreu/beeref.git
synced 2026-03-11 08:54:28 +00:00
6 lines
118 B
Python
6 lines
118 B
Python
|
|
def queue2list(queue):
|
||
|
|
qlist = []
|
||
|
|
while not queue.empty():
|
||
|
|
qlist.append(queue.get())
|
||
|
|
return qlist
|