DebugClients/Python3/DebugClientBase.py

branch
5_3_x
changeset 2762
423835fb1204
parent 2639
d9c43b41da5b
child 2953
703452a2876f
child 3086
468af6a08374
diff -r 79aa3d4f2216 -r 423835fb1204 DebugClients/Python3/DebugClientBase.py
--- a/DebugClients/Python3/DebugClientBase.py	Sat Jun 29 17:36:26 2013 +0200
+++ b/DebugClients/Python3/DebugClientBase.py	Sat Jun 29 18:40:45 2013 +0200
@@ -1203,6 +1203,11 @@
             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):

eric ide

mercurial