MCPcopy Index your code
hub / github.com/fabioz/PyDev.Debugger / request_get_variable

Method request_get_variable

_pydevd_bundle/pydevd_api.py:333–338  ·  view source on GitHub ↗

:param scope: 'FRAME' or 'GLOBAL'

(self, py_db, seq, thread_id, frame_id, scope, attrs)

Source from the content-addressed store, hash-verified

331 py_db.post_method_as_internal_command(thread_id, internal_change_variable, seq, thread_id, frame_id, scope, attr, value)
332
333 def request_get_variable(self, py_db, seq, thread_id, frame_id, scope, attrs):
334 """
335 :param scope: 'FRAME' or 'GLOBAL'
336 """
337 int_cmd = InternalGetVariable(seq, thread_id, frame_id, scope, attrs)
338 py_db.post_internal_command(int_cmd, thread_id)
339
340 def request_get_array(self, py_db, seq, roffset, coffset, rows, cols, fmt, thread_id, frame_id, scope, attrs):
341 int_cmd = InternalGetArray(seq, roffset, coffset, rows, cols, fmt, thread_id, frame_id, scope, attrs)

Callers 1

cmd_get_variableMethod · 0.80

Calls 2

InternalGetVariableClass · 0.90
post_internal_commandMethod · 0.80

Tested by

no test coverage detected