X-Git-Url: https://git.sthu.org/?a=blobdiff_plain;f=DbgTerminal.py;h=a899a6358bdbdc3a4f4c6896bb6d16d69f8c6dba;hb=5d8a5dbbe84a2c74de62e5c83eabd06081512e48;hp=9c1d8b38b770ecef1f0eee25b3d82c3773f1f999;hpb=956e4f7845dc0bbf3f5c8e676d7227e32a75ba3a;p=pygdb.git diff --git a/DbgTerminal.py b/DbgTerminal.py index 9c1d8b3..a899a63 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()