Is it possible, and how, to see the items in a Queue instance while debugging in PyDev, without popping them out via the interactive console?
Best would be via the Expressions view of course as that would update while stepping the code
You could use q.queue attribute to access the underlying sequence:
>>> q = Queue()
>>> q.put(1)
>>> q.queue
deque([1])
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With