diff options
Diffstat (limited to 'Lib/pdb.py')
-rwxr-xr-x | Lib/pdb.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Lib/pdb.py b/Lib/pdb.py index 3786ed97b5..c6164ad08a 100755 --- a/Lib/pdb.py +++ b/Lib/pdb.py @@ -105,7 +105,13 @@ class Pdb(bdb.Bdb, cmd.Cmd): if len(line) > 0 and line[0] != '#': self.onecmd(line) - # Override Bdb methods (except user_call, for now) + # Override Bdb methods + + def user_call(self, frame, argument_list): + """This method is called when there is the remote possibility + that we ever need to stop in this function.""" + print '--Call--' + self.interaction(frame, None) def user_line(self, frame): """This function is called when we stop or break at this line.""" |