MCPcopy Create free account
hub / github.com/fabioz/PyDev.Debugger / Exec

Function Exec

_pydevd_bundle/pydevd_exec2.py:1–5  ·  view source on GitHub ↗
(exp, global_vars, local_vars=None)

Source from the content-addressed store, hash-verified

1def Exec(exp, global_vars, local_vars=None):
2 if local_vars is not None:
3 exec(exp, global_vars, local_vars)
4 else:
5 exec(exp, global_vars)

Callers 6

console_execFunction · 0.85
custom_operationFunction · 0.85
evaluate_expressionFunction · 0.85
change_attr_expressionFunction · 0.85
change_variableMethod · 0.85
do_change_variableMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected