--- a/DebugClients/Python/DebugClientBase.py Wed Jul 20 22:14:24 2016 +0200 +++ b/DebugClients/Python/DebugClientBase.py Sat Jul 23 14:12:07 2016 +0200 @@ -1267,30 +1267,6 @@ # Nothing found. return fn - def shouldSkip(self, fn): - """ - Public method to check if a file should be skipped. - - @param fn filename to be checked - @return non-zero if fn represents a file we are 'skipping', - zero otherwise. - """ - if self.mainThread.tracePython: # trace into Python library - return 0 - - # Eliminate anything that is part of the Python installation. - afn = self.absPath(fn) - for d in self.skipdirs: - if afn.startswith(d): - return 1 - - # special treatment for paths containing site-packages or dist-packages - for part in ["site-packages", "dist-packages"]: - if part in afn: - return 1 - - return 0 - def getRunning(self): """ Public method to return the main script we are currently running.