X-Git-Url: https://git.sthu.org/?p=pygdb.git;a=blobdiff_plain;f=DbgTerminal.py;h=7c494458000fb40005486ea9f8b85f64849ec4ee;hp=c8b079fe18491567865c0d86c4c2ca9e39902e6b;hb=9a8e5a643a533e00a2c8fdd6f03ea7b7a5e5d649;hpb=e3403072dbc8f31817f6492dea70ebdf5128fcb2 diff --git a/DbgTerminal.py b/DbgTerminal.py index c8b079f..7c49445 100644 --- a/DbgTerminal.py +++ b/DbgTerminal.py @@ -111,7 +111,10 @@ class DbgTerminal (vte.Terminal): def setQuit(self): raise NotImplementedError() - def setBreakpoint(self, file, lineno): + def setBreakpoint(self, file, lineno, condition=False): + raise NotImplementedError() + + def delBreakpoint(self, breakpoint): raise NotImplementedError() def getExpression(self, expr):