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

Method handle_breakpoint_expression

pydevd.py:987–995  ·  view source on GitHub ↗
(self, pybreakpoint, info, new_frame)

Source from the content-addressed store, hash-verified

985 etype, value, tb = None, None, None
986
987 def handle_breakpoint_expression(self, pybreakpoint, info, new_frame):
988 try:
989 try:
990 val = eval(pybreakpoint.expression, new_frame.f_globals, new_frame.f_locals)
991 except:
992 val = sys.exc_info()[1]
993 finally:
994 if val is not None:
995 info.pydev_message = str(val)
996
997 def _internal_get_file_type(self, abs_real_path_and_basename):
998 basename = abs_real_path_and_basename[-1]

Callers 4

_stop_on_breakpointFunction · 0.80
trace_dispatchMethod · 0.80
should_stop_on_exceptionFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected