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

Function Request

tests/timeline.py:798–806  ·  view source on GitHub ↗
(command, arguments=some.object)

Source from the content-addressed store, hash-verified

796
797
798def Request(command, arguments=some.object):
799 exp = PatternExpectation("request", command, arguments)
800 items = (("command", command),)
801 if arguments is some.object:
802 items += (("\002...", "...\003"),)
803 else:
804 items += (("arguments", arguments),)
805 exp.describe = lambda: _describe_message("request", *items)
806 return exp
807
808
809def Response(request, body=some.object):

Callers 2

expectation_ofFunction · 0.90
test_request_responseFunction · 0.90

Calls 2

PatternExpectationClass · 0.85
_describe_messageFunction · 0.85

Tested by 2

expectation_ofFunction · 0.72
test_request_responseFunction · 0.72

Used in the wild real call sites across dependent graphs

searching dependent graphs…