--- a/DebugClients/Python3/DebugBase.py Sun Sep 11 16:39:30 2016 +0200 +++ b/DebugClients/Python3/DebugBase.py Tue Sep 13 18:33:44 2016 +0200 @@ -608,7 +608,7 @@ stack = [] while fr is not None: fname = self._dbgClient.absPath(self.fix_frame_filename(fr)) - if not fname.startswith("<"): + if not fname.startswith("<") and not fname.endswith("bdb.py"): fline = fr.f_lineno ffunc = fr.f_code.co_name @@ -674,7 +674,7 @@ # return from dispatch_call fr.f_trace = self.trace_dispatch fname = self._dbgClient.absPath(self.fix_frame_filename(fr)) - if not fname.startswith("<"): + if not fname.startswith("<") and not fname.endswith("bdb.py"): fline = fr.f_lineno ffunc = fr.f_code.co_name