MCPcopy Create free account
hub / github.com/microsoft/debugpy / Processor

Class Processor

tests/debugpy/test_evaluate.py:658–668  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

656 self.event = threading.Event()
657
658 class Processor(object):
659 def __init__(self, queue):
660 self._queue = queue
661
662 def process(self, i):
663 obj = NotificationObject(i)
664 self._queue.put(obj)
665 assert obj.event.wait()
666
667 def finish(self):
668 self._queue.put("finish")
669
670 if __name__ == "__main__":
671 q = queue.Queue()

Callers 1

code_to_debugFunction · 0.70

Calls

no outgoing calls

Tested by 1

code_to_debugFunction · 0.56

Used in the wild real call sites across dependent graphs

searching dependent graphs…