Closed TomNash closed 4 years ago
Allows queue to be used as such:
from persistent_queue import PersistentQueue queue = PersistentQueue('queue') queue.push(5) queue.push(10) assert 5 in queue assert 15 not in queue for item in queue: print(item)
Allows queue to be used as such: