mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
42 lines
1018 B
Python
42 lines
1018 B
Python
def add_line_breakpoint(plugin, pydb, type, file, line, condition, expression, func_name):
|
|
return None
|
|
|
|
def add_exception_breakpoint(plugin, pydb, type, exception):
|
|
return False
|
|
|
|
def remove_exception_breakpoint(plugin, pydb, type, exception):
|
|
return False
|
|
|
|
def get_breakpoints(plugin, pydb):
|
|
return None
|
|
|
|
def can_not_skip(plugin, pydb, frame, info):
|
|
return False
|
|
|
|
def has_exception_breaks(plugin):
|
|
return False
|
|
|
|
def has_line_breaks(plugin):
|
|
return False
|
|
|
|
def cmd_step_into(plugin, pydb, frame, event, args, stop_info, stop):
|
|
return False
|
|
|
|
def cmd_step_over(plugin, pydb, frame, event, args, stop_info, stop):
|
|
return False
|
|
|
|
def stop(plugin, pydb, frame, event, args, stop_info, arg, step_cmd):
|
|
return False
|
|
|
|
def get_breakpoint(plugin, pydb, frame, event, args):
|
|
return None
|
|
|
|
def suspend(plugin, pydb, thread, frame):
|
|
return None
|
|
|
|
def exception_break(plugin, pydb, frame, args, arg):
|
|
return None
|
|
|
|
def change_variable(plugin, frame, attr, expression):
|
|
return False
|