DebugClients/Python3/DebugClientBase.py

branch
debugger speed
changeset 5048
9899fb545b1f
parent 5046
d57f18f15f1a
child 5049
e1d22c4b0be0
diff -r d57f18f15f1a -r 9899fb545b1f DebugClients/Python3/DebugClientBase.py
--- a/DebugClients/Python3/DebugClientBase.py	Wed Jul 20 22:14:24 2016 +0200
+++ b/DebugClients/Python3/DebugClientBase.py	Sat Jul 23 14:12:07 2016 +0200
@@ -1272,30 +1272,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 False
-            
-        # Eliminate anything that is part of the Python installation.
-        afn = self.absPath(fn)
-        for d in self.skipdirs:
-            if afn.startswith(d):
-                return True
-        
-        # special treatment for paths containing site-packages or dist-packages
-        for part in ["site-packages", "dist-packages"]:
-            if part in afn:
-                return True
-        
-        return False
-    
     def getRunning(self):
         """
         Public method to return the main script we are currently running.

eric ide

mercurial