X-Git-Url: https://git.sthu.org/?a=blobdiff_plain;f=DbgTerminal.py;h=ab365deb4245bde09116810e2ecdea9c84cbe779;hb=45cba3449f4f5d044edb80ff7062c7fce4047142;hp=aa04b3d7900e8f6e721a615f4b982211db5dc4c7;hpb=379760912de740354f07f223b308d5092c0700ad;p=pygdb.git diff --git a/DbgTerminal.py b/DbgTerminal.py index aa04b3d..ab365de 100644 --- a/DbgTerminal.py +++ b/DbgTerminal.py @@ -199,6 +199,9 @@ class DbgTerminal (vte.Terminal): def setStepin(self): raise NotImplementedError() + def setStepout(self): + raise NotImplementedError() + def setQuit(self): raise NotImplementedError() @@ -214,6 +217,9 @@ class DbgTerminal (vte.Terminal): def listCodeSnippet(self): raise NotImplementedError() + def getBacktrace(self): + raise NotImplementedError() + def waitForPrompt(self, his): raise NotImplementedError()